hmac.digest() 方法是crypto 模块中hmac 类的内置应用程序编程接口,用于返回输入数据的hmac 哈希值。
用法:
hmac.digest([encoding])
参数:该方法将编码作为一个参数,它是一个可选参数。
返回值:此方法使用 hmac.update() 计算所有数据传递的 hmac 摘要。如果未提供编码,则返回 Buffer,否则返回 String。
注意:hmac.digest() 执行最终操作。因此,调用 hmac.digest() 后,hmac 对象变得不可用。调用多个 hmac.digest() 导致错误。
项目设置:创建一个新的 NodeJS 项目并将其命名为 hmac
mkdir hmac && cd hmac npm init -y npm install crypto
现在,在项目根目录中创建一个.js文件,并将其命名为index.js
范例1:
index.js
// Node.js program to demonstrate the
// crypto hmac.digest() method
// Importing crypto module
const { createHmac } = require('crypto')
// Creating and initializing algorithm
// and password
const algo = 'sha256'
const secret = 'GFG Secret Key'
// Create an HMAC instance
const hmac = createHmac(algo, secret)
// Update the internal state of
// the hmac object
hmac.update('GeeksForGeeks')
// Perform the final operations
// No encoding provided
// Return calculated hmac hash
// value as Buffer
let result = hmac.digest()
// Check whether returns value is
// instance of buffer or not
console.log(Buffer.isBuffer(result)) // true
// Convert buffer to string
result = result.toString('hex')
// Print the result
console.log(`HMAC hash:${result}`)
使用以下命令运行index.js文件:
node index.js
输出:
true
HMAC hash:c8ae3e09855ae7ac3405ad60d93758edc0ccebc1cf5c529bfb5d058674695c53
范例2:
index.js
// Node.js program to demonstrate the
// crypto hmac.digest() method
// Defining myfile
const myfile = process.argv[2];
// Includes crypto and fs module
const crypto = require('crypto');
const fs = require('fs');
// Creating and initializing
// algorithm and password
const algo = 'sha256'
const secret = 'GFG Secret Key'
// Creating Hmac
const hmac = crypto.createHmac(algo, secret);
// Creating read stream
const readfile = fs.createReadStream(myfile);
readfile.on('readable', () => {
// Calling read method to read data
const data = readfile.read();
if (data) {
// Updating
hmac.update(data);
} else {
// Perform the final operations
// Encoding provided
// Return hmac hash value
const result = hmac.digest('base64')
// Display result
console.log(
`HMAC hash value of ${myfile}:${result}`);
}
});
使用以下命令运行index.js文件:
node index.js package.json
输出:
HMAC hash value of package.json: L5XUUEmtxgmSRyg12gQuKu2lmTJWr8hPYe7vimS5Moc=
参考: https://nodejs.org/api/crypto.html#crypto_hmac_digest_encoding
相关用法
- Node.js console.timeLog()用法及代码示例
- Node.js x509.toLegacyObject()用法及代码示例
- Node.js fs.fsyncSync()用法及代码示例
- Node.js process.nextTick()用法及代码示例
- Node.js GM charcoal()用法及代码示例
- Node.js GM blur()用法及代码示例
注:本文由纯净天空筛选整理自braktim99大神的英文原创作品 Node.js hmac.digest() Method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。