PCLCrypto MD5 HashAlgorithm

时间:2016-07-12 10:08:33

标签: c# hash xamarin md5 pcl-crypto

HashData返回的值不是Md5哈希示例:

哈希" a"总是返回" 0cc175b9c0f1b6a831c399e269772661"

但是这段代码总是返回不同的值。

private byte[] GetHash(string data)    
{
      IHashAlgorithmProvider algoProv = HashAlgorithmProvider.OpenAlgorithm(HashAlgorithm.Md5);
      byte [] dataTB = Encoding.UTF8.GetBytes(data);
      return algoProv.HashData(dataTB);
}

1 个答案:

答案 0 :(得分:0)

我已经从MD5测试了PCLCrypto算法,它按预期工作。始终打印“0cc175b9c0f1b6a831c399e269772661

for (int i = 0; i< 10; i++)
{
    Debug.WriteLine(ByteArrayToHex((GetHash("a"))));
}

public static byte[] GetHash(string data)
{
    IHashAlgorithmProvider algoProv = HashAlgorithmProvider.OpenAlgorithm(HashAlgorithm.Md5);
    byte[] dataTB = Encoding.UTF8.GetBytes(data);
    return algoProv.HashData(dataTB);
}

//Convert hash to hex
private static string ByteArrayToHex(byte[] hash)
{
    var hex = new StringBuilder(hash.Length * 2);
    foreach (byte b in hash)
        hex.AppendFormat("{0:x2}", b);

    return hex.ToString();
}