标签: c# c++ hmacsha1
C#代码:
HMACSHA1 hmacGenerator = new HMACSHA1(); hmacGenerator.Key = sharedSecretArray; byte[] hashedData = hmacGenerator.ComputeHash(timeArray);
变量类型:
byte[] sharedSecretArray byte[8] timeArray
如何在C ++中获得相同的哈希数据?