C # код:
HMACSHA1 hmacGenerator = new HMACSHA1(); hmacGenerator.Key = sharedSecretArray; byte[] hashedData = hmacGenerator.ComputeHash(timeArray);
Типы переменных:
byte[] sharedSecretArray byte[8] timeArray
Как получить те же хеш-данные в C ++?