Exemplo n.º 1
0
 public static bool verify(string password, string passwordHashed)
 {
     return(SimpleHash.VerifyHash(password, SimpleHashAlgorithm.SHA512, passwordHashed));
 }
Exemplo n.º 2
0
 public static bool verifyHash(string UniqueValue, string UniqueValueHashed)
 {
     return(SimpleHash.VerifyHash(UniqueValue, SimpleHashAlgorithm.MD5, UniqueValueHashed));
 }