加密:

md5加密:  有加密  也有解密

sha256加密:  只有加密  没有解密

 

/* 加密 1*/
  const crypto = require('crypto');
//创建加密模式 sha256 2
  const hash = crypto.createHash('sha256');
//加密的数据 3
  hash.update(password);
//加密的结果 4
  //console.log(hash.digest('hex'));
userModel.userSave({username,password:hash.digest('hex')},(result)=>{
  if(result){
    res.json({
      status:true,
      info:"注册成功"
    })
  }
})