引入
const crypto = require('crypto');
使用
const hash = crypto.createHash('md5');
hash.update('123456');
res.end(hash.digest('hex'));
引入
const crypto = require('crypto');
使用
const hash = crypto.createHash('md5');
hash.update('123456');
res.end(hash.digest('hex'));