Common encryption methods and implementation in Python Python中常用的加密方法及实现
1、 前言
我们提到的加密方法都是二进制编码格式的加密,它对应于Python中的字节。
因此,当我们在Python中加密操作时,我们应该确保对字节进行操作,否则我们将报告一个错误。
encode()和decode()方法可用于将字符串和字节相互转换。具体如下:
# -*- coding:UTF-8 -*- __author__ = "rxz" # 方法中不传参数则是以默认的utf-8编码进行转换 a = "中国欢迎您".encode("utf-8") print(a) # b"xe4xb8xadxe5x9bxbdxe6xacxa2xe8xbfx8exe6x82xa8" b = a.decode("utf-8") print(b) #中国欢迎您
hmoban主题是根据ripro二开的主题,极致后台体验,无插件,集成会员系统
自学咖网 » Common encryption methods and implementation in Python Python中常用的加密方法及实现
自学咖网 » Common encryption methods and implementation in Python Python中常用的加密方法及实现