コード例 #1
0
ファイル: KeyGenerator.cs プロジェクト: dlongest/Advent2016
 public static string Hash(string s)
 {
     return(Md5Hash.Compute(s).ToHexString());
 }
コード例 #2
0
ファイル: Md5Hash.cs プロジェクト: dlongest/Advent2016
        public static T Compute <T>(string data, Func <byte[], T> output)
        {
            var bytes = Md5Hash.Compute(data);

            return(output(bytes));
        }