一日一技:如何在Python中加密密码
即将开播:5月20日,基于kubernetes打造企业级私有云实践
如何在Python中加密密码
加密密码会将密码编码为随机字符序列。
使用base64.b64encode()加密密码
调用str.encode(“ utf-8”)将密码str编码为UTF-8字符串。 调用base64.b64encode(utf_string)将上一步中的utf_string编码为基本64字符串。 调用base64.b64decode(b64_string)将b64_string解码回str。
password = "my_password".encode("utf-8") encoded = base64.b64encode(password) print(encoded) decoded = base64.b64decode(encoded) print(decoded)
相关推荐
pythonjw 2020-11-17
YENCSDN 2020-11-17
lsjweiyi 2020-11-17
houmenghu 2020-11-17
Erick 2020-11-17
HeyShHeyou 2020-11-17
以梦为马不负韶华 2020-10-20
lhtzbj 2020-11-17
夜斗不是神 2020-11-17
dingwun 2020-11-16
lhxxhl 2020-11-16
坚持是一种品质 2020-11-16
染血白衣 2020-11-16
huavhuahua 2020-11-20
meylovezn 2020-11-20
逍遥友 2020-11-20
weiiron 2020-11-16