当前位置:网站首页>关于密码加密的一点思路
关于密码加密的一点思路
2022-08-02 14:01:00 【意大利面拌42号混凝土】
关于密码加密的一点思路
如何在数据库被劫持代码泄露的情况下,用户密码依然不会被破解呢
带着这个问题我书写了一下代码
from hashlib import sha256, sha512
test_pwd = 'testpassword123'
class CipherHandler(object):
""" 密码加密与密码比对 """
# 密码盐
salt = "cvbjd%*vfjkse#fuei"
@classmethod
def encrypt(cls, pwd: str) -> str:
""" 先随机加盐,再用两次sha256/sha512加密 :return: """
import random
randnum = random.randint(1, 3)
if randnum == 1:
salt_pwd = ''.join([cls.salt, pwd])
return cls._encryption(salt_pwd)
elif randnum == 2:
salt_pwd = ''.join([pwd, cls.salt])
return cls._encryption(salt_pwd)
elif randnum == 3:
pwd_list = list(pwd)
pwd_list.insert(randnum, cls.salt)
salt_pwd = ''.join(pwd_list)
return cls._encryption(salt_pwd)
@classmethod
def compare(cls, user_input_pwd: str,
database_storage_pwd: str
) -> bool:
""" 加密比对 :return: """
pwd_list = []
salt_pwd_one = ''.join([cls.salt, user_input_pwd])
pwd_list.append(cls._encryption(salt_pwd_one))
salt_pwd_two = ''.join([user_input_pwd, cls.salt])
pwd_list.append(cls._encryption(salt_pwd_two))
str_list = list(user_input_pwd)
str_list.insert(3, cls.salt)
salt_pwd_three = ''.join(str_list)
pwd_list.append(cls._encryption(salt_pwd_three))
if database_storage_pwd not in pwd_list:
return False
return True
@classmethod
def _encryption(cls, salt_pwd: str) -> str:
one_encryption = sha512((salt_pwd).encode('utf-8')).hexdigest()
enc_pwd = sha512((one_encryption).encode('utf-8')).hexdigest()
return enc_pwd
# 加密
print(CipherHandler.encrypt(test_pwd))
# 校验比对
print(CipherHandler.compare(test_pwd,'32b5b701ece1747eb90935fa55fe96983126a9683dbb1a537750fe5527eb3552ce13d31e2d2fad07fd8fe755794973221404e3a528dfa74ff0aff93e8b6745c6'))
边栏推荐
猜你喜欢

You can't accept 60% slump, there is no eligible for gain of 6000% in 2021-05-27

Diodes and their applications

网络安全第四次作业

保姆级教程:写出自己的移动应用和小程序(篇三)

文件加密软件有哪些?保障你的文件安全

【Tensorflow】AttributeError: ‘_TfDeviceCaptureOp‘ object has no attribute ‘_set_device_from_string‘

C language improvement (3)

打破文件锁限制,以存储力量助力企业增长新动力

世界上最大的开源基金会 Apache 是如何运作的?

二极管及其应用
随机推荐
网络安全第一次作业(2)
机器学习——交叉验证法
How to solve mysql service cannot start 1069
关于Google词向量模型(googlenews-vectors-negative300.bin)的导入问题
一维卷积神经网络_卷积神经网络的基础知识「建议收藏」
GTK:Gdk-CRITICAL **: IA__gdk_draw_pixbuf: assertion ‘GDK_IS_DRAWABLE (drawable)’ failed
如何解决mysql服务无法启动1069
软件测试和硬件测试的区别及概念
方舟生存进化淘宝面板服务器是怎么一回事?
Supervision strikes again, what about the market outlook?2021-05-22
音频处理:浮点型数据流转PCM文件
Break the limit of file locks and use storage power to help enterprises grow new momentum
RowBounds[通俗易懂]
面试官:可以谈谈乐观锁和悲观锁吗
网络安全第五次作业
CVE-2020-27986(Sonarqube敏感信息泄漏) 漏洞修复
CVE-2020-27986 (Sonarqube sensitive information leak) vulnerability fix
OpenMMLab简介
关于市场后市的发展预测? 2021-05-23
WiFi Association & Omnipeek Packet Capture Analysis