美文网首页
nodejs——Error: Digest already ca

nodejs——Error: Digest already ca

作者: 一只飞 | 来源:发表于2018-04-24 15:11 被阅读0次

这个是使用nodejs md5加密,多次加密时报错;

const crypto = require('crypto');
var content_1 = 'content_1';
var hash = crypto.createHash('md5');
hash.update(content_1);
console.log( hash.digest('hex'));
//当再次加密另一个字符串时
var content_2 = 'content_2';
var hash = crypto.createHash('md5');//*****需要再次创建
hash.update(content_2);
console.log( hash.digest('hex'));

相关文章

网友评论

      本文标题:nodejs——Error: Digest already ca

      本文链接:https://www.haomeiwen.com/subject/wodjlftx.html