摘要: 在线JS 混淆&加密 工具 https://ztf.net.cn/tools/jsformat.html 概念介绍 “混淆”也好,“加密”也好,都是为了加强代码的安全性,防范被人任意查看,在一定程度上保护资源。混淆:为了降低代码的可读性 加密:都是要通过“解密”计算过程将代码还原以后才能执行。 编码 阅读全文
posted @ 2022-05-25 19:59 逐梦客! 阅读(831) 评论(0) 推荐(0) 编辑
摘要: 在线工具 https://ztf.net.cn/tools/md5Encrypt.html Python import hashlib def computeMD5(message): m = hashlib.md5() m.update(message.encode(encoding='utf-8 阅读全文
posted @ 2022-05-25 18:03 逐梦客! 阅读(1447) 评论(0) 推荐(0) 编辑
摘要: 在线大小写转换 https://ztf.net.cn/tools/enCaseEncode.html Python print("Hello World!".upper()) print("Hello World!".lower()) JS "Hello World!".toUpperCase() 阅读全文
posted @ 2022-05-25 17:21 逐梦客! 阅读(765) 评论(0) 推荐(0) 编辑