在C#中HMAC等效于字节数组中的chr(0)?

时间:2013-11-29 00:21:20

标签: c# php hash

我遇到的问题是在C#中使用等效的哈希值与php:

相同

$ sig = hash_hmac('sha512',$ endpoint.chr(0)。$ data,$ password);

我认为问题在于php使用chr(0)构建字符串的方式。

在C#中,我需要在$ endpoint和$ password之间使用等效chr(0)的字节数组。

hmacsha512.ComputeHash(encoding.GetBytes(endPoint +(char)0 +密码))无效。

0 个答案:

没有答案