前言:
而今咱们对“python密码加密程序”大概比较重视,大家都想要了解一些“python密码加密程序”的相关知识。那么小编同时在网上汇集了一些对于“python密码加密程序””的相关知识,希望朋友们能喜欢,你们一起来了解一下吧!如何在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)
输出:
b'bXlfcGFzc3dvcmQ='b'my_password'
版权声明:
本站文章均来自互联网搜集,如有侵犯您的权益,请联系我们删除,谢谢。