const crypto=require("crypto")
const hash=crypto.createHash("md5")
hash.update("hello geyao")
console.log(hash.digest("hex"))运行结果

微信扫一扫
const crypto=require("crypto")
const hash=crypto.createHash("md5")
hash.update("hello geyao")
console.log(hash.digest("hex"))运行结果

相关推荐