VUE+webpack+npm项目中的sha256加密
一、安装js-sha256
$ npm install js-sha256
二、引入js-sha256
在需要使用的模块中引入js-sha256
const sha256 = require("js-sha256").sha256; //引入sha256库
三、sha256加密
password = sha256('my password');
JQery中
https://www.bootcdn.cn/js-sha256/
<script src="https://cdn.bootcss.com/js-sha256/0.9.0/sha256.min.js"></script>
<script>var password = sha256('1'); // 注意要加密的数据必须是string类型console.log(password)
</script>