nodejs之crypto加密算法

示例
const crypto = require('crypto');
const hash = crypto.createHash('sha256'); hash.update('some data to hash');
console.log(hash.digest('hex'));
// Prints:
// 6a2da20943931e9834fc12cfe5bb47bbd9ae43489a30726962b576f4e3993e50

参考:

https://www.cnblogs.com/chyingp/p/nodejs-learning-crypto-theory.html

官方文档

上一篇:Android 开发 values目录里定义数组、颜色、文本、尺寸xml配置文件并且获取数据 附录Android符号转码表


下一篇:javascript加载优化