python

关注公众号 jb51net

关闭
首页 > 脚本专栏 > python > Python base64编码与解码

Python使用自带的base64库进行base64编码和解码的实现

作者:牛奶咖啡13

本文主要介绍了Python使用自带的base64库进行base64编码和解码的实现,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧

使用base64库:

import base64

# 编码函数
def base64_encode(msg):
    # 将消息转换为bytes类型
    msg_bytes = msg.encode('utf-8')
    # 进行base64编码
    encoded_bytes = base64.b64encode(msg_bytes)
    # 将编码后的bytes类型转换为字符串类型并返回
    return encoded_bytes.decode('utf-8')

# 解码函数
def base64_decode(encoded_msg):
    # 将编码后的字符串类型转换为bytes类型
    encoded_bytes = encoded_msg.encode('utf-8')
    # 进行base64解码
    decoded_bytes = base64.b64decode(encoded_bytes)
    # 将解码后的bytes类型转换为字符串类型并返回
    return decoded_bytes.decode('utf-8')

# 测试编码解码
msg = 'Hello, world!'
encoded_msg = base64_encode(msg)
decoded_msg = base64_decode(encoded_msg)
print(encoded_msg)
print(decoded_msg)

运行结果:

注意:base64编码是可逆的,即可以从编码后的消息还原出原始消息。因此,base64通常用于在网络上传输二进制数据,或者将二进制数据嵌入到文本中。

到此这篇关于Python使用自带的base64库进行base64编码和解码的实现的文章就介绍到这了,更多相关Python base64编码与解码内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

您可能感兴趣的文章:
阅读全文