你用 Python 写过最酷的程序是什么?


我编写过的最酷的 Python 程序是 Python 密码哈希程序。让我们首先了解什么是 Python 密码哈希。

什么是密码哈希?

Python 密码哈希是一种高级加密形式,可用于安全地在线存储密码。在当今网络无处不在的世界中,用户密码是互联网上最容易受到攻击的敏感信息之一。密码字符串使用不同的哈希算法转换为一串随机字符,这些算法已在我的程序中使用。用户被指示输入密码字符串,然后选择要使用的适当哈希算法。然后显示输出哈希,可以将其存储在线。

使用步骤

  • 为不同的哈希方法创建函数

  • 获取用户输入的密码字符串

  • 获取用户输入的哈希方法选择

  • 转换字符串并提供输出

步骤 1:为不同的哈希方法创建函数

首先,我们创建不同的函数,这些函数将密码字符串作为参数并将其转换为密文形式。密文实际上是数据经过哈希处理后的形式。不同的函数包含不同的哈希算法。

语法

def hash_with_MD5(message):
   print ("MD5:", hashlib.md5(message).hexdigest()) 

这里函数将消息作为参数,并使用 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 

步骤 2:获取用户输入的密码字符串

下一步是从用户那里获取输入,用于需要存储的密码。出于安全原因,必须对要存储的密码进行哈希处理,并且在哈希处理之前,必须对用户输入的密码进行编码以确保它适合传递给哈希函数。此编码操作由encode()函数执行。

语法

password=input("message").encode()

我们使用input()函数从用户那里接收到的密码不能用于哈希,因此使用encode()函数对其进行编码。为了简化编码和简单性,这两个步骤在这里组合成一个命令。

算法

步骤 1 − 使用input()函数接收用户输入

步骤 2 − 将输入转换为编码格式

示例

password=input(“Enter the password for hashing: ”).encode()

输出

Enter the password for hashing: Python 

步骤 3:获取用户输入的哈希方法选择

我们将为用户提供选择,即我们将使用哪种哈希算法来安全地哈希密码。不同的方法有不同的优点和缺点,因此我们让用户选择最适合特定密码的方法。这里我们使用简单的 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 

结论

因此,在这里我们构建了用于哈希用户密码并返回以进行安全存储的程序。该程序成功运行并解决了重要目的。还可以进行进一步的修改以实现更新的功能,我们稍后会这样做。

更新于: 2023-03-24

96 次浏览

开启你的 职业生涯

通过完成课程获得认证

开始学习
广告