โมดูล Python ของการเข้ารหัส
ในบทนี้คุณจะได้เรียนรู้รายละเอียดเกี่ยวกับโมดูลต่างๆของการเข้ารหัสใน 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')
เอาต์พุต
Scenario 1 - หากคุณป้อนรหัสผ่านที่ถูกต้องคุณจะพบผลลัพธ์ต่อไปนี้ -
Scenario 2 - หากเราป้อนรหัสผ่านผิดคุณจะพบผลลัพธ์ต่อไปนี้ -
คำอธิบาย
Hashlibแพ็คเกจใช้สำหรับจัดเก็บรหัสผ่านในฐานข้อมูล ในโปรแกรมนี้salt ใช้เพื่อเพิ่มลำดับแบบสุ่มให้กับสตริงรหัสผ่านก่อนที่จะใช้ฟังก์ชันแฮช