小编典典

如何使用 Node.js Crypto 创建 HMAC-SHA1 哈希?

all

我想创建一个散列I love cupcakes(用密钥签名abcdeg

如何使用 Node.js Crypto 创建该哈希?


阅读 66

收藏
2022-06-09

共1个答案

小编典典

加密文档:http ://nodejs.org/api/crypto.html

const crypto = require('crypto')

const text = 'I love cupcakes'
const key = 'abcdeg'

crypto.createHmac('sha1', key)
  .update(text)
  .digest('hex')
2022-06-09