Python-Base64加解密


本文介绍以下,使用Python进行Base64 加解密方法。

1.0 代码如下:

import base64

s = "暖星东"
bs = base64.b64encode(s.encode("utf-8"))
print(bs)

s = str(base64.b64decode(bs),"utf-8")
print(s)

原创文章,作者:ItWorker,如若转载,请注明出处:https://blog.ytso.com/289905.html

(0)
上一篇 2022年9月17日
下一篇 2022年9月17日

相关推荐

发表回复

登录后才能评论