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