本文要举荐的[ToolFk]是一款程序员经常运用的线上免费测试工具箱,ToolFk 特殊是专注于程序员平常的研发工具,不消安装任何软件,只要把内容贴上按一个执行按钮,就能获取到想要的内容结果。ToolFk还支持 BarCode条形码在线生成、 QueryList采集器、 PHP代码在线运行、 PHP混淆、加密、解密、 Python代码在线运行、JavaScript在线运行、YAML格式化工具、HTTP模拟查找工具、HTML在线工具箱、JavaScript在线工具箱、CSS在线工具箱、JSON在线工具箱、Unixtime时间戳转换、Base64/URL/Native2Ascii转换、CSV转换工具箱、XML在线工具箱、WebSocket在线工具、Markdown 在线工具箱、Htaccess2nginx 转换、进制在线转换、在线加密工具箱、在线伪原创工具、在线APK反编译、在线网页截图工具、在线随机暗码生成、在线生成二维码Qrcode、在线Crontab表达式生成、在线短网址生成、在线计算器工具
。等20多个平常程序员研发工具,算是一个非常全面的程序员工具箱网站。
網站名稱:ToolFk 網站鏈結:https://www.toolfk.com/工具链接:https://www.toolfk.com/tool-convert-encryption
代码教學 本工具[在线MD5、SHA、AES、Rabit 、RC4、TripleDES Ripemd160 加密解密工具]依赖的代码库为https://github.com/brix/crypto-js
STEP 1
STEP 2
核心代码如下
function md5_encode(key,message){
return CryptoJS.MD5(key+message).toString();
}
function macmd5_encode(key,message){
return CryptoJS.HmacMD5(message,key).toString();
}
function ase_encode(key,message){
return CryptoJS.AES.encrypt(message, key).toString();
}
function ase_decode(key,message){
var decryptResult = CryptoJS.AES.decrypt(message, key);
return decryptResult.toString(CryptoJS.enc.Utf8);
}
function des_encode(key,message){
toolfk.report(des_encode,key+":"+message);
return CryptoJS.DES.encrypt(message, key).toString();
}
function des_decode(key,message){
var decryptResult= CryptoJS.DES.decrypt(message, key);
return decryptResult.toString(CryptoJS.enc.Utf8);
} function ra
|