在C ++中模拟C#HMACSHA1.ComputeHash?

时间:2018-11-20 22:56:53

标签: c# c++ hmacsha1

C#代码:

HMACSHA1 hmacGenerator = new HMACSHA1();
hmacGenerator.Key = sharedSecretArray;
byte[] hashedData = hmacGenerator.ComputeHash(timeArray);

变量类型:

byte[] sharedSecretArray
byte[8] timeArray

如何在C ++中获得相同的哈希数据?

0 个答案:

没有答案