NodeJs md5 sha1加密

时间:2022-09-07 17:38:44

var crypto = require('crypto');

module.exports = {
  md5: (str)=> {
    return crypto.createHash('md5').update(str).digest('hex').toUpperCase();
  },
  sha1: (str)=> {
    return crypto.createHash('sha1').update(str).digest('hex').toUpperCase();
  }
};

console.log(module.exports.sha1("123"));