base64加密
本帖最后由 陶远航 于 2022-8-29 17:12 编辑源码:
import base64
str1 = int(input("输入1加密,输入2解密:"))
if str1==1:
str1=input("请输入加密的内容:")
b = base64.b64encode(str1.encode('utf-8')).decode("utf-8")
print("加密的结果:",b)
input()
elif str1==2:
b=input("加密前:")
c = base64.b64decode(b.encode("utf-8")).decode("utf-8")
print("解密的结果:",c)
input()
else:
print("错误!")
input()
把 Base64 称呼为“加密”是否有些不妥? dolly_yos2 发表于 2022-8-29 18:13
把 Base64 称呼为“加密”是否有些不妥?
编码对吧 感觉“编码”应该更合理些,毕竟 Base64 不提供安全性 dolly_yos2 发表于 2022-8-29 19:01
感觉“编码”应该更合理些,毕竟 Base64 不提供安全性
嗯
页:
[1]