当前位置: 代码迷 >> 综合 >> js sha256加密input is invalid type at Sha256.push../node_modules/js-sha256/src/sha256.js.Sha256.up
  详细解决方案

js sha256加密input is invalid type at Sha256.push../node_modules/js-sha256/src/sha256.js.Sha256.up

热度:24   发布时间:2023-12-17 19:50:29.0

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>

*注意要加密的数据必须是string类型

  相关解决方案