0
点赞
收藏
分享

微信扫一扫

实现SSM简易商城项目的商品查询功能

有态度的萌狮子 2023-08-24 阅读 66

Day17-Node后端身份验证

一 密码加密

1 MD5加密

  • 创建MD5.js
//node提供了一个内置模块crypto用于密码加密
const crypto = require("crypto")

module.exports.getMd5 = function(password){
   
    const md5 
举报

相关推荐

0 条评论