7

我正在尝试在 Google Apps Script 中计算 HMAC 签名,但文档并没有 100% 清楚地说明我需要如何传递参数,而且我无法获得预期的输出。


为了确定我是否得到正确的输出,我将结果与已知良好的 PHP 代码进行比较。该代码是:

$key = "a2V5"; # this is "key" base64-encoded
$value = "test";
$result = base64_encode(hash_hmac('sha512', $value, base64_decode($key), true));

我在 Google Apps 脚本中的代码是:

key = "a2V5"; // this is "key" base64-encoded
value = "test";
result = Utilities.base64Encode(Utilities.computeHmacSignature(Utilities.MacAlgorithm.HMAC_SHA_512, value, Utilities.base64Decode(key)));

我期望收到的输出是:

KHoPuJp/vfpbVThjaRjlN6W4MGXk/zMSaLeqoRXd4EepsPT7W4KGCPwLYyfxAFX3Y3sFjp4Nu55piQGj5t1GHA==

但我得到的是:

mGXJ3X/nH5ZIFUAPtf1PsViY50pD3cfU7J8w2KAIEAqrAgZ3dpKcuy5V1yvH4/C5n1C9rFFsKc2JKHTwUqPscQ==

我在这里搞砸了什么?

4

1 回答 1

7

我查看了您的代码,有一件事引起了我的注意:

Utilities.base64Decode(key)方法返回Byte[] Utilities.computeHmacSignature(macAlgorithm, value, key)接受 3 个参数。value并且key是 类型string

也许这就是问题所在。您为什么不尝试以下方法并检查结果:

key = "a2V5"; // this is "key" base64-encoded
clearKey = "key";
value = "test";
result = Utilities.base64Encode(Utilities.computeHmacSignature(Utilities.MacAlgorithm.HMAC_SHA_512, value, clearKey));

我在这里查看 Google Apps 脚本。

于 2012-12-22T22:40:03.523 回答