python密码学各种加密模块教程
作者:菜鸟教程 时间:2021-03-10 05:32:55
在本章中,您将详细了解Python中各种加密模块.
加密模块
它包含所有配方和基元,并在Python中提供高级编码接口.您可以使用以下命令安装加密模块 :
pip install cryptography
代码
您可以使用以下代码实现加密模块 :
from cryptography.fernet import Fernet
key = Fernet.generate_key()
cipher_suite = Fernet(key)
cipher_text = cipher_suite.encrypt("This example is used to demonstrate cryptography module")
plain_text = cipher_suite.decrypt(cipher_text)
输出
上面给出的代码产生以下输出 :
此处给出的代码用于验证密码并创建其哈希值.
它还包括用于验证密码以进行身份验证的逻辑.
import uuid
import hashlib
def hash_password(password):
# uuid is used to generate a random number of the specified password
salt = uuid.uuid4().hex
return hashlib.sha256(salt.encode() + password.encode()).hexdigest() + ':' + salt
def check_password(hashed_password, user_password):
password, salt = hashed_password.split(':')
return password == hashlib.sha256(salt.encode() + user_password.encode()).hexdigest()
new_pass = input('Please enter a password: ')
hashed_password = hash_password(new_pass)
print('The string to store in the db is: ' + hashed_password)
old_pass = input('Now please enter the password again to check: ')
if check_password(hashed_password, old_pass):
print('You entered the right password')
else:
print('Passwords do not match')
输出
场景1 : 如果您输入了正确的密码,您可以找到以下输出 :
情景2 : 如果我们输入错误的密码,您可以找到以下输出 :
说明
Hashlib 包用于在数据库中存储密码.在此程序中,使用 salt ,在实现哈希函数之前,将随机序列添加到密码字符串中.
来源:https://www.it1352.com/OnLineTutorial/cryptography_with_python/cryptography_with_python_modules_of_cryptography.html
标签:python,密码学,加密模块
0
投稿
猜你喜欢
Python namedtuple命名元组实现过程解析
2022-08-20 14:27:20
jsp中文显示问号问题解决方法
2023-07-22 10:33:50
用python写爬虫简单吗
2024-01-02 08:03:26
javascript网页随机点名实现过程解析
2024-04-16 09:35:31
Python 通过微信控制实现app定位发送到个人服务器再转发微信服务器接收位置信息
2023-02-15 16:49:10
Python Pillow Image Invert
2023-10-02 12:33:30
python枚举类型定义与使用讲解
2021-04-11 08:55:42
javascript计时器事件使用详解
2024-05-08 09:38:58
如何安装MySQL Community Server 5.6.39
2024-01-26 23:07:29
详解pandas数据合并与重塑(pd.concat篇)
2023-06-02 00:05:37
python实现的多线程端口扫描功能示例
2023-02-02 10:18:29
如何基于Python pygame实现动画跑马灯
2023-09-07 18:56:59
基于PyQT实现区分左键双击和单击
2022-10-30 01:58:47
Python Tornado之跨域请求与Options请求方式
2023-11-24 19:47:08
Python selenium实现大麦网自动购票过程解析
2023-10-17 05:43:10
python3爬虫怎样构建请求header
2023-04-17 19:01:45
使用python socket分发大文件的实现方法
2022-05-23 10:45:40
在vue中使用export default导出的class类方式
2024-04-09 10:48:47
Python实现的旋转数组功能算法示例
2021-09-11 20:49:46
python 中的@运算符使用
2023-10-24 22:23:46