博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
前端 使用 crypto-js 对数据进行对称加密
阅读量:6263 次
发布时间:2019-06-22

本文共 1026 字,大约阅读时间需要 3 分钟。

传送门:

# crypto-js githubhttps://github.com/brix/crypto-js

 

demo1:

// 加载核心加密库var CryptoJS = require("crypto-js");// 加载des算法var tripledes = require("crypto-js/tripledes");// 开始加密,并且返回密文var ciphertext  = tripledes.encrypt("fuckyou", '123').toString();// 解密var plaintext  = tripledes.decrypt(ciphertext, '123').toString(CryptoJS.enc.Utf8)// 输出密文和解密后的内容console.log(ciphertext, plaintext)

 

demo2:

// 加载核心加密库var CryptoJS = require("crypto-js");function encrypt (message, key) {    var keyHex = CryptoJS.enc.Utf8.parse(key);     var encrypted = CryptoJS.DES.encrypt(message, keyHex, {        mode: CryptoJS.mode.ECB,        padding: CryptoJS.pad.Pkcs7    });    return {        key: keyHex,        value: encrypted.toString()    }}function decrypt (message, key) {    var plaintext = CryptoJS.DES.decrypt(message, key, {        mode: CryptoJS.mode.ECB,        padding: CryptoJS.pad.Pkcs7    })    return plaintext.toString(CryptoJS.enc.Utf8)}var a = encrypt('mssage123', '123');var b = decrypt(a.value, a.key);console.log(a.value.length)

 

转载地址:http://dpzpa.baihongyu.com/

你可能感兴趣的文章
Linux通配符与特殊符号知识大全
查看>>
[BZOJ5105]【[Code+#1]晨跑】
查看>>
bootstrap到底是用来做什么的(概念)
查看>>
高并发服务端分布式系统设计概要
查看>>
sqlite3.datebase.serialize(function(){})的问题
查看>>
Xml通用操作类
查看>>
网站访问数据统计工具
查看>>
11面向对象封装案例
查看>>
动态加载js小笔
查看>>
C#_IComparer实例 - 实现ID或者yearOfscv排序
查看>>
2016 hosts
查看>>
TypeKit ,use online fonts
查看>>
原生Ajax
查看>>
文件上传及下载
查看>>
七、jquery对象的学习,有难度
查看>>
Ajax_数据格式_HTML
查看>>
微信公众账号怎么快速增加粉丝
查看>>
HBase 笔记1
查看>>
loadrunner两个函数:取参数长度和时间戳函数
查看>>
Docker exec与Docker attach
查看>>