标签:其它 title ted 相关 tle 结果 ESS console 算法
HMAC:哈希消息认证码 ( Hash-based Message Authentication Code )
HMAC是密钥相关的哈希算法
使用 HMAC 进行加密的Node实现的一种方法:
"use strict"; const crypto = require("crypto");
//实例化一个hmac对象,使用md5进行加密,加密密钥是secret-key const hmac = crypto.createHmac("md5", "secret-key");
//使用hmac的update方法添加需要加密的内容 hmac.update("This is what needs to be encrypted");
//将加密内容转换成十六进制数,并在控制台打印 console.log(hmac.digest("hex"));
注:
1.使用hmac加密是需要密钥的;
2.密钥在crypto的createHmac方法的第二个参数传入;
3.密钥不同,经过加密得到的结果就不同
4.使用hmac对数据进行加密的 其它方法
Node.js 内置模块crypto加密模块(3) HMAC
标签:其它 title ted 相关 tle 结果 ESS console 算法
原文地址:https://www.cnblogs.com/hros/p/10997073.html