2020-06-10
描述
使用 SHA-256 算法为指定的字符串创建一个哈希。返回 Promise。
提示
- 使用
crypt
API 为给定的值创建一个哈希 - 使用
setTImeout
防止耗时阻塞 - 使用
Promise
为用户提供友好的接口
代码
const crypto = require('crypto');
const hashNode = val =>
new Promise(resolve =>
setTimeout(
() =>
resolve(
crypto
.createHash('sha256')
.update(val)
.digest('hex')
),
0
)
);
示例
获取哈希值:
hashNode(JSON.stringify({ a: 'a', b: [1, 2, 3, 4], foo: { c: 'bar' } })).then(console.log); // '04aa106279f5977f59f9067fa9712afc4aedc6f5862a8defc34552d8c7206393'