你在Python中写过的最酷的程序是什么
我写过的最酷的Python程序是Python密码哈希器。让我们先了解一下什么是Python密码哈希。
什么是密码哈希
Python密码哈希是一种高级加密形式,可以用于安全存储密码。在今天的在线世界中,用户密码是互联网上最容易受到攻击的敏感信息之一。使用不同的哈希算法,将密码字符串转换为一串随机字符,这些哈希算法被我程序中使用。用户被要求输入密码字符串,然后选择要使用的适当的哈希算法。然后显示输出的哈希值,可以存储在线。
使用的步骤
- 创建不同哈希方法的函数
-
接受用户输入的密码字符串
-
接受用户输入的哈希方法选择
-
转换字符串并提供输出
第一步:创建不同哈希方法的函数
首先,我们创建不同的函数,这些函数以密码字符串作为参数,并将其转换为密文形式。密文实际上是数据在哈希后的形式。不同的函数包含不同的哈希算法。
语法
def hash_with_MD5(message):
print ("MD5:", hashlib.md5(message).hexdigest())
在这里,将消息作为参数传递给函数,并使用MD5散列算法将其转换为密文。然后将哈希摘要打印给用户。如果使用其他散列算法而不是MD5,那么语法将保持相同,只需要更改哈希函数的调用。
步骤
步骤1 - 为不同的散列算法定义不同的函数
步骤2 - 将用户输入的字符串作为函数的参数
步骤3 - 在函数体中,打印哈希密码的十六进制摘要
示例
def hash_with_MD5(message):
encoded=message.encode()
print ("Hashed with MD5:", hashlib.md5(encoded).hexdigest())
def hash_with_SHA(message):
encoded=message.encode()
print ("Hashed with SHA:", hashlib.sha256(encoded).hexdigest())
def hash_with_blake(message):
encoded=message.encode()
print ("Hashed with blake2b:", hashlib.blake2b(encoded).hexdigest())
message='tutorialspoint'
hash_with_MD5(message)
hash_with_SHA(message)
hash_with_blake(message)
输出
Hashed with MD5: 6c60b3cfe5124f982eb629e00a98f01f
Hashed with SHA:
15e6e9ddbe43d9fe5745a1348bf1535b0456956d18473f5a3d14d6ab06737770
Hashed with blake2b:
109f6f017d7a77bcf57e4b48e9c744280ae7f836477c16464b27a3fe62e1353c70ec4c7f938080
60ee7c311094eede0235a43151c3d2b7401a3cb5a8f8ab3fbb
第二步:获取用户输入的密码字符串
下一步是从用户那里获取需要存储的密码。由于安全原因,要存储的密码必须进行哈希处理,在进行哈希处理之前,用户输入的密码必须进行编码以确保适合传递给哈希函数。这个编码操作由 encode() 函数执行。
语法
password=input("message").encode()
使用input()函数从用户那里得到的密码不能用于哈希处理,因此需要使用encode()函数对其进行编码。这两个步骤在这里合并为一个单独的命令,以便编码和简化代码。
步骤
步骤1 - 使用input()函数从用户接收输入
步骤2 - 将输入转换为编码格式
示例
password=input(“Enter the password for hashing: ”).encode()
输出
Enter the password for hashing: Python
第三步:接受用户输入选择哈希方法
我们将为用户提供选择,用于安全地哈希密码的哈希算法。不同方法有不同的优缺点,所以我们给用户选择权,让他们决定哪种方法最适合特定的密码。在这里,我们使用简单的If-else结构来确定用户输入的选择。
语法
while True:
choice = input("Enter choice(1/2/3): ")
if choice in ('1', '2', '3'):
try:
…………………
在这里我们询问用户执行的哈希类型,以及选项列表。然后检查输入是否在有效输入列表中,如果是真的,则执行所请求的操作。否则,程序控制将跳出循环。
步骤
步骤1 - 询问用户输入
步骤2 - 检查用户输入是否有效
步骤3 - 根据选择执行操作
步骤4 - 询问是否执行更多操作
示例
import hashlib
def hash_with_MD5(password):
#encoded=password.encode()
print ("Hashed with MD5:", hashlib.md5(password).hexdigest())
def hash_with_SHA(password):
#encoded=password.encode()
print ("Hashed with SHA:", hashlib.sha256(password).hexdigest())
def hash_with_blake(password):
#encoded=password.encode()
print ("Hashed with blake2b:", hashlib.blake2b(password).hexdigest())
print("Select hashing operation.")
print("1.MD5")
print("2.SHA")
print("3.blake")
while True:
# take input from the user
choice = input("Enter choice(1/2/3): ")
# check if choice is one of the four options
if choice in ('1', '2', '3'):
try:
password=input('Enter the password for hashing: ').encode()
except ValueError:
print("Invalid input. Please enter a string.")
continue
if choice == '1':
hash_with_MD5(password)
elif choice == '2':
hash_with_SHA(password)
elif choice == '3':
hash_with_blake(password)
# checking if user wants another calculation
# break the while loop if answer is no
next_calculation = input("Let's do next calculation? (yes/no): ")
if next_calculation == "no":
break
else:
print("Invalid Input")
输出
Select hashing operation.
1.MD5
2.SHA
3.blake
Enter choice(1/2/3): 2
Enter the password for hashing:Python
Hashed with SHA:
18885f27b5af9012df19e496460f9294d5ab76128824c6f993787004f6d9a7db
Let's do next calculation? (yes/no): yes
Enter choice(1/2/3): 1
Enter the password for hashing:Tutorialspoint
Hashed with MD5: da653faa9f00528be9a57f3474f0e437
Let's do next calculation? (yes/no): no
结论
因此,我们已经构建了用于哈希用户密码并返回以便安全存储的程序。该程序运行成功并解决了一个重要的问题。后续还可以进行进一步的修改以实现新的功能,我们将在以后进行。