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