NetSuite Crypto createHmac显示无效的算法值

时间:2017-06-15 09:11:51

标签: netsuite

我在NetSuite SuiteScript 2.0中使用加密模块。我在加密中使用createHmac方法,如下面的

 var hmacSignature = crypto.createHmac({
 algorithm: crypto.HashAlg.SHA1 ,
                     key: sKey
  });

我收到了'算法'的无效类型参数值。这是在NetSuite SuiteScript PDF上设置类型的指定方法。我做错了什么?

1 个答案:

答案 0 :(得分:0)

感谢Krypton,我可以通过使用crypto.CreateSecretKey方法生成它来传递crypto.SecretKey对象来解决这个问题