vue.js使用3DES加密的方法示例
本文实例讲述了vue.js使用3des加密的方法。分享给大家供大家参考,具体如下:
如何在vue-cli手脚架建立的工程中使用3des加密:
npm install crypto-js --save-dev
import cryptojs from 'crypto-js'
//des加密 pkcs7填充方式 encryptbydes(message, key){ const keyhex = cryptojs.enc.utf8.parse(key); const encrypted = cryptojs.des.encrypt(message, keyhex, { mode: cryptojs.mode.ecb, padding: cryptojs.pad.pkcs7 }); return encrypted.tostring(); } //des解密 decryptbydes(ciphertext, key){ const keyhex = cryptojs.enc.utf8.parse(key); // direct decrypt ciphertext const decrypted = cryptojs.des.decrypt({ ciphertext: cryptojs.enc.base64.parse(ciphertext) }, keyhex, { mode: cryptojs.mode.ecb, padding: cryptojs.pad.pkcs7 }); return decrypted.tostring(cryptojs.enc.utf8); } const _key = 'abcdefghijklmn' const _password = '123456' //加密 console.log(this.encryptbydes(_password,_key)) //解密 console.log(this.decryptbydes(_password,_key))
简单看一下crypto-js
目录结构list of modules:
crypto-js/core
crypto-js/x64-core
crypto-js/lib-typedarrays
crypto-js/md5
crypto-js/sha1
crypto-js/sha256
crypto-js/sha224
crypto-js/sha512
crypto-js/sha384
crypto-js/sha3
crypto-js/ripemd160
crypto-js/hmac-md5
crypto-js/hmac-sha1
crypto-js/hmac-sha256
crypto-js/hmac-sha224
crypto-js/hmac-sha512
crypto-js/hmac-sha384
crypto-js/hmac-sha3
crypto-js/hmac-ripemd160
crypto-js/pbkdf2
crypto-js/aes
crypto-js/tripledes
crypto-js/rc4
crypto-js/rabbit
crypto-js/rabbit-legacy
crypto-js/evpkdf
crypto-js/format-openssl
crypto-js/format-hex
crypto-js/enc-latin1
crypto-js/enc-utf8
crypto-js/enc-hex
crypto-js/enc-utf16
crypto-js/enc-base64
crypto-js/mode-cfb
crypto-js/mode-ctr
crypto-js/mode-ctr-gladman
crypto-js/mode-ofb
crypto-js/mode-ecb
crypto-js/pad-pkcs7
crypto-js/pad-ansix923
crypto-js/pad-iso10126
crypto-js/pad-iso97971
crypto-js/pad-zeropadding
crypto-js/pad-nopadding
cryptojs-v3.1.2点击此处本站下载
ps:关于加密解密感兴趣的朋友还可以参考本站在线工具:
文字在线加密解密工具(包含aes、des、rc4等):
在线编码转换工具(utf-8/utf-32/punycode/base64):
在线md5/hash/sha-1/sha-2/sha-256/sha-512/sha-3/ripemd-160加密工具:
在线sha1/sha224/sha256/sha384/sha512加密工具:
希望本文所述对大家vue.js程序设计有所帮助。
下一篇: 怎么查询微信认证审核进度?