美文网首页
vue rsa加密

vue rsa加密

作者: Null丶sleep | 来源:发表于2020-07-29 15:33 被阅读0次
    1. npm加载jsencrypt ,你也可以下载js文件在index引用或者直接引用线上的,不在叙述

    2. npm i jsencrypt -S

    3. min.js写入

    import JSEncrypt from 'jsencrypt';//引用模块
    
    Vue.prototype.$jsEncrypt = JSEncrypt;//全局
    

    在你的上传方法里面写入,一般在获取后端回调的公钥里面写入

    const jse = new this.$jsEncrypt()//创建
    jse.setPublicKey("")//配置公钥,一般都为后端传输过来的
    this.name = jse.encrypt("你的账户或者密码")
    

    相关文章

      网友评论

          本文标题:vue rsa加密

          本文链接:https://www.haomeiwen.com/subject/xcvfrktx.html