使用python3的base64编解码实现字符串的简易加密解密
使用python3的base64编解码实现字符串的简易加密解密
""" 皮蛋编程(https://www.pidancode.com) 创建日期:2022/4/2 功能描述:使用python3的base64编解码实现字符串的简易加密解密 """ import base64 def main(): content = b'pidancode' print(content) # base64 编码 encode_content = base64.b64encode(content) print(encode_content) # 解码 print(base64.b64decode(encode_content)) if __name__ == '__main__': main()
输出结果:
b'pidancode'
b'cGlkYW5jb2Rl'
b'pidancode'
相关文章