示例#1
0
 public static bool Verify(string input, string hash)
 {
     return(CurrentEncryptor.Verify(input, hash));
 }
示例#2
0
        public static bool Verify(string input, string hash, EncryptorType encryptorType, string salt)
        {
            EncryptorBase enc = Init(encryptorType.ToString());

            return(enc.Verify(input, hash, salt));
        }