bcrypt 加密

bcrypt 加密

引入

npm i bcrypt -S

代码

加密
const bcrypt = require("bcrypt")
const salt = bcrypt.genSaltSync(10);
const hash = bcrypt.hashSync(password, salt);//加密
验证
const isMatch = bcrypt.compareSync(password, hash);//验证
posted @ 2023-05-12 17:08  流云君  阅读(9)  评论(0编辑  收藏  举报