哈希是一种无法逆转的加密函数。它需要随机大小的输入来生成固定大小的值。这些固定大小的值称为哈希值, 加密函数称为哈希函数。散列具有一致和可预测的性质,这意味着相同的输入将始终产生相同的散列值。它还表现出雪崩效应,这意味着即使输入的微小变化也会导致哈希值截然不同,从而确保高安全性和不确定性。
散列通常采用加盐散列,其中在散列之前将称为盐的唯一随机字符串添加到输入中,即使对于相同的输入,每个散列也是唯一的
加盐哈希主要用于密码哈希。其中一种算法是bcrypt 算法。
bcrypt 算法
bcrypt 算法基于 blowfish 加密算法。 bcrypt 为每个密码生成唯一的 salt(随机字符串),然后将 salt 与密码组合后再进行哈希处理。这使得 bcrypt 能够抵抗暴力攻击。
bcrypt 的工作原理
生成盐:
bcrypt 生成一个 16 字节长的随机盐,通常采用 base64 格式。对给定字符串进行哈希处理:
盐与密码组合,生成的字符串通过 blowfish 加密算法传递。 bcrypt 应用由工作因子定义的多轮哈希。高轮数使其计算成本高昂,从而增强了其对暴力攻击的抵抗力。
工作因子,也称为成本,由对数值 2 定义。如果成本为 12,则意味着 2^12 轮。成本系数越高,生成哈希所需的时间就越长,这反过来又使攻击者更难暴力破解密码。bcrypt 哈希的格式和长度:
$2y$12$odwbfokg9vtk/baarxkkl.9q8khxheysqpli/gsnpmzswqcajb.gs
登录后复制
给定的字符串包含:
- $2y$:bcrypt 版本
- 12 是成本因子(2^12 轮)
- 接下来的22个字符(odwbfokg9vtk/baarxkkl。)是base64编码的盐
- 其余字符是密码和盐的 base64 编码哈希。
pythonbcrypt算法的实现bcrypt算法
所需的依赖项
import hashlib import os import base64
登录后复制
类初始化
class bcrypt: def __init__(self, rounds=12, salt_length=22): self.rounds = rounds self.salt_length = salt_length
登录后复制
bcrypt 类封装了哈希和验证密码的功能
参数:
生成盐
def generate_salt(self, salt_length=none): if salt_length is none: salt_length = self.salt_length return base64.b64encode(os.urandom(salt_length)).decode('utf-8')[:salt_length]
登录后复制
函数generate_salt创建一个随机盐,它将是一个唯一的值,将被添加到密码中,以确保即使相同的密码也会产生不同的哈希值。
哈希密码
def bcrypt_hash(self, password, salt, cost): password_salt = f'{password}{salt}' password_salt = password_salt.encode('utf-8') hashed_password_salt = hashlib.sha256(password_salt).hexdigest() for _ in range(2**cost): hashed_password_salt = hashlib.sha256(hashed_password_salt.encode('utf-8')).hexdigest() return hashed_password_salt def hash_password(self, password, salt_length=none, cost=none): if salt_length is none: salt_length = self.salt_length if cost is none: cost = self.rounds salt = self.generate_salt(salt_length) hashed_password = self.bcrypt_hash(password, salt, cost) return f'{cost}${salt}${hashed_password}'
登录后复制
函数bcrypt_hash使用提供的盐和成本因子安全地散列密码。
和函数 hash_password 使用随机盐为给定密码生成安全哈希。
代码:
import hashlib import os import base64 class bcrypt: def __init__(self, rounds=12, salt_length=22): self.rounds = rounds self.salt_length = salt_length def generate_salt(self, salt_length=none): if salt_length is none: salt_length = self.salt_length return base64.b64encode(os.urandom(salt_length)).decode('utf-8')[:salt_length] def bcrypt_hash(self, password, salt, cost): password_salt = f'{password}{salt}' password_salt = password_salt.encode('utf-8') hashed_password_salt = hashlib.sha256(password_salt).hexdigest() for _ in range(2**cost): hashed_password_salt = hashlib.sha256(hashed_password_salt.encode('utf-8')).hexdigest() return hashed_password_salt def hash_password(self, password, salt_length=none, cost=none): if salt_length is none: salt_length = self.salt_length if cost is none: cost = self.rounds salt = self.generate_salt(salt_length) hashed_password = self.bcrypt_hash(password, salt, cost) return f'{cost}${salt}${hashed_password}' def verify_password(self, password, hashed_password): cost, salt, hashed_password = hashed_password.split('$') cost = int(cost) return hashed_password == self.bcrypt_hash(password, salt, cost) bcrypt = bcrypt() password = 'vinayak' hashed_password = bcrypt.hash_password(password) print('string :', password, ' bcrypt hash :', hashed_password) print('verify password :', bcrypt.verify_password(password, hashed_password)) print('verify invalid password :', bcrypt.verify_password('vinayak1', hashed_password))
登录后复制
输出:
python test.py string : vinayak bcrypt hash : 12$FxJAsfQ2+7WuMj+ZGPAdFE$546a20a2ad890186ab661cb4969e8651a6f75eb5d4ffa0706ba4153414b65ea5 verify password : True verify invalid password : False
登录后复制
以上就是用于安全密码哈希的 Bcrypt 算法的详细内容,更多请关注抖狐科技其它相关文章!
-
如何选择适合自己的触摸屏笔记本电脑
如何选择一款适合自己需求的触摸屏笔记本电脑?这个问题对于想要购买这种类型的笔记本电脑的用户来说至关重要。触摸屏笔记本电脑提供了一系列优势,例如便利性和互动性,但是市面上的选择多种多样,令人眼花缭乱。p...
-
绝区零安比实战当中该怎么输出
绝区零安比实战输出详解在《绝区零》中,安比是一个以快速移动和高爆发输出著称的角色。然而,许多玩家在实战中遇到了输出不足的问题。php小编香蕉将详细介绍安比的输出机制,并提供实战技巧,帮助大家解决输出难...
-
爱奇艺怎么把视频下载到相册中
可以通过以下步骤将爱奇艺视频下载到相册:1. 打开爱奇艺 app;2. 找到要下载的视频;3. 点击下载按钮;4. 选择下载画质;5. 选择下载路径(相册);6. 开始下载;7. 查看下载进度;8....
-
公社网
这是 Wix Studio 挑战赛:社区版的提交内容。我的社区平台CommuneNet 是不同的人可以聚集在一起解决问题和分享想法的地方。您可以在这里写博客、聊天、加入群组、参加论坛以及查找资源。这就...
-
有关计算机语言的英文单词有哪些
计算机语言包含用于描述计算操作和数据结构的单词,包括:变量(存储数据值)、数据类型(定义变量值类型)、运算符(执行运算)、语句(指示操作)、数组(有序元素集合)、链表(通过指针连接元素)、栈(lifo...