コード例 #1
0
ファイル: XmlProcessor.cs プロジェクト: dotsetup/dotsetup
 private static string MD5(string leftOp, string rightOp) => CryptUtils.ComputeHash(leftOp, CryptUtils.Hash.MD5);
コード例 #2
0
ファイル: XmlProcessor.cs プロジェクト: dotsetup/dotsetup
 private static string DecodeBase64(string leftOp, string rightOp) => new StreamReader(CryptUtils.Decode(leftOp, CryptUtils.EncDec.BASE64)).ReadToEnd();
コード例 #3
0
ファイル: XmlProcessor.cs プロジェクト: dotsetup/dotsetup
 private static string SHA1(string leftOp, string rightOp) => CryptUtils.ComputeHash(leftOp, CryptUtils.Hash.SHA1);