课程名称: 新版 Node.js+Express+Koa2 开发Web Server博客
课程章节: 9-3 密码加密和总结
课程讲师: 双越
课程内容:
代码演示
utils/crype.js
const crypto = require("crypto"); // 密匙 const SECRET_KEY = "WJiol_8776#"; // md5 加密 function md5(content) { let md5 = crypto.createHash("md5"); return md5.update(content).digest("hex"); } // 加密函数 function genPassword(password) { const str = `password=${password}&key=${SECRET_KEY}`; return md5(str); } module.exports = { genPassword, };
总结
课程收获: