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