suneil

//首先加载node自带的加密模块
var crypto = require(\'crypto\')
//使用方法
var pwd = ‘abc123’
var md5 = crypto.createHash(\'md5\')
var newpwd = md5.update(pwd).digest(\'hex\')

分类:

技术点:

相关文章:

  • 2021-10-02
  • 2022-12-23
  • 2022-12-23
  • 2021-08-07
  • 2022-12-23
  • 2022-12-23
  • 2021-10-12
  • 2021-10-04
猜你喜欢
  • 2021-12-31
  • 2021-10-25
  • 2022-01-24
  • 2022-12-23
  • 2021-12-06
  • 2021-04-05
相关资源
相似解决方案