Base64编码常作为电子邮件的传输编码,将邮件内容编码成ascii码进行传输。
Python和Mysql中都提供了base64编码和解码的函数。
- Python:直接使用字符串编码会报错TypeError: a bytes-like object is required, not 'str'(原因:python3中字符都为unicode编码,而b64encode函数的参数为byte类型,所以需要先转码),先编码成 'utf-8'
base64.b64encode(s) 对字符串进行编码
base64.b64decode(s) 对字符串进行解码
import base64 #包名 # 如果直接使用字符串,在python3中会报错TypeError s = '中午的牛肉面很好吃' a = base64.b64encode(s) # TypeError: a bytes-like object is required, not 'str' print(a) print(base64.b64decode(a))
解决方法:
s = '中午的牛肉面很好吃' #某一条短信 a = base64.b64encode(s.encode('utf-8')) # 编码传输,也就是获取到短信编码后的结果 print(a) b = base64.b64decode(a) #对短信 sms信息,进行解码 print(b.decode('utf-8')) #再次转码
同时,还有很多其他的编解码方法,如下:
- Mysql:to_base64 编码和 from_base64解码
编码:
select to_base64('今天天气很好啊') as base64_str;
解码:
select from_base64('5LuK5aSp5aSp5rCU5b6I5aW95ZWK') as str_; #假设其中的参数是一条编码过的短信 sms信息,则可以直接解码
select from_base64('5Lit5Y2I55qE54mb6IKJ6Z2i5b6I5aW95ZCD') as str_; #这是上述python中的例子,会得到相同的结果
参考:
https://blog.csdn.net/yishengzhiai005/article/details/80045042