JS中的Ruby的OpenSSL :: HMAC.new是什么?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JS中的Ruby的OpenSSL :: HMAC.new是什么?相关的知识,希望对你有一定的参考价值。
我有一些API的示例代码,但它在Ruby中,而我更喜欢使用nodeJS。你能不能使用任何类型的ruby / JS chaps让我知道JS的等价物,以及我需要安装的任何npm库。
hmac = OpenSSL::HMAC.new(sharedsecret, OpenSSL::Digest::SHA512.new)
signature = hmac.update(url)
答案
试试这个吧
var crypto = require('crypto');
hmac = crypto.createHmac('SHA512', sharedsecret);
hmac.update(url);
signature = hmac.digest('hex');
以上是关于JS中的Ruby的OpenSSL :: HMAC.new是什么?的主要内容,如果未能解决你的问题,请参考以下文章