我正在嘗試集成2個系統,一個使用C++和其他用途Jva來生成HMAC摘要。在Java和C++中HMAC摘要不同
以下是C++代碼: -
static const GUID seedGUID = { 0xd6fecf42, 0x2d1e, 0x4db9, { 0xa2, 0x73, 0xeb,
0x34, 0x13, 0xe, 0xa1, 0x37 } };
shaCheckSum.AddData((char*)&seedGUID, sizeof(seedGUID));
shaCheckSum.AddData((char*)szSeed, uiSeedLen);
shaCheckSum.AddData((char*)szStr, uiStrLen);
shaCheckSum.FinalDigest(szResult);
HMAC產生是9B2D06D314018A5134EA1CF54D5A9F20CECC473965BD9801AAC9D4868EF39D38
szSeed是0.4726005982213448 szStr是[email protected]
以下是Java代碼: -
final String HMAC_SHA1_ALGORITHM = "HmacSha256";
final String secret = "D6FECF42-2D1E-4db9-A273-EB34130EA137";
final SecretKeySpec signingKey = new SecretKeySpec(secret.toLowerCase().getBytes(),HMAC_SHA1_ALGORITHM);
final Mac mac = Mac.getInstance(HMAC_SHA1_ALGORITHM);
mac.init(signingKey);
mac.update("0.4726005982213448".getBytes());
mac.update("[email protected]".getBytes());
final byte[] rawHmac = mac.doFinal();
for (final byte element : rawHmac)
{
result += Integer.toString((element & 0xff) + 0x100, 16).substring(1);
}
System.out.println(result);
HMAC的結果是f91b07623fea970b5f9d1f5d83f850b3a6077c0e80f42b574a01d861143eac09
這兩個HMAC都不同。
這個問題怎麼解決?
感謝您的期待!
用於sha功能的C++版本是什麼庫? – Eelke
請回複評論和答案,親愛的用戶... –