1 Star 0 Fork 4

lgwgl/UnicomTask

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
encrypconfig.py 677 Bytes
一键复制 编辑 原始数据 按行查看 历史
Vittoz 提交于 2021-05-18 14:00 . Travis 支持 (#507)
import hashlib
import base64
import os
import sys
from aes import AEScoder
import uuid
if __name__ == "__main__":
env_dist = os.environ #
if 'ENCKEY' in env_dist:
key = env_dist['ENCKEY']
else:
key = str(uuid.uuid4());
key=key.replace("-","",100);
# key = env_dist["cookiekey"]
print("您的config 加密密码(请添加到环境变量 ENCKEY):\n")
print(key);
t = AEScoder(key);
p = open("/".join([sys.path[0], "config_of_mine.json"])).read();
e = t.encrypt(p);
text_file = open("config_of_mine.json.enc", "w")
text_file.write(e);
text_file.close()
p2 = t.decrypt(e);
print ("",p2 == p );
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/lgwgl/UnicomTask.git
git@gitee.com:lgwgl/UnicomTask.git
lgwgl
UnicomTask
UnicomTask
main

搜索帮助