我在NetSuite SuiteScript 2.0中使用加密模块。我在加密中使用createHmac方法,如下面的
var hmacSignature = crypto.createHmac({
algorithm: crypto.HashAlg.SHA1 ,
key: sKey
});
我收到了'算法'的无效类型参数值。这是在NetSuite SuiteScript PDF上设置类型的指定方法。我做错了什么?
答案 0 :(得分:0)
感谢Krypton,我可以通过使用crypto.CreateSecretKey方法生成它来传递crypto.SecretKey对象来解决这个问题