Example #1
0
 private static string MD5(string leftOp, string rightOp) => CryptUtils.ComputeHash(leftOp, CryptUtils.Hash.MD5);
Example #2
0
 private static string DecodeBase64(string leftOp, string rightOp) => new StreamReader(CryptUtils.Decode(leftOp, CryptUtils.EncDec.BASE64)).ReadToEnd();
Example #3
0
 private static string SHA1(string leftOp, string rightOp) => CryptUtils.ComputeHash(leftOp, CryptUtils.Hash.SHA1);