vue SHA256 加密
import crypto from "crypto";export const SHA256 = val => {const hash = crypto.createHash("sha256");hash.update(val);return hash.digest("hex")};
·
import crypto from "crypto";
export const SHA256 = val => {
const hash = crypto.createHash("sha256");
hash.update(val);
return hash.digest("hex")
};
更多推荐
已为社区贡献2条内容
所有评论(0)