随笔- 81
文章- 1
评论- 9
阅读-
43927
03 2023 档案
python之DES3加密
摘要:安装第三方模块 pip install pycryptodome 代码实现 import base64 from Crypto.Cipher import DES3 def des3(data_string): BS = 8 pad = lambda s: s + (BS - len(s) % BS
阅读全文