3

我使用 django 创建了一个数据库,并创建了一个 html 表单来将数据存储到数据库中。现在,我想使用 pycryptodome 加密并将密文存储到数据库中。当我显示来自数据库的数据时,我想要解密的明文。

我从 pycrytodome 文档中尝试了一些基本的加密示例和算法。现在,我想加密密文并将其存储到数据库中。

#This is the function where I want to encrypt the data in the get_password variable and store it
def add(request):
    get_name = request.POST["add_name"]
    get_password = request.POST["add_password"]
    print(type(get_name),type(get_password))
    s = Student(student_name=get_name,student_password=get_password)
    context = { "astudent":s }
    s.save()
    return render(request,"sms_2/add.html",context)
#This is the example I have tried from pycryptodome documentation.
from Crypto.Cipher import AES
key=b"Sixteen byte key"
cipher=AES.new(key,AES.MODE_EAX)
data=b"This is a secret@@!!"
nonce = cipher.nonce
ciphertext, tag = cipher.encrypt_and_digest(data)
print(nonce)
print(key)
print(cipher)
print(ciphertext)
print(tag)




cipher1 = AES.new(key, AES.MODE_EAX, nonce=nonce)
plaintext = cipher1.decrypt(ciphertext)
try:
    cipher1.verify(tag)
    print("The message is authentic:", plaintext)
except ValueError:

    print("Key incorrect or message corrupted")

我想加密使用 html 表单输入数据库的明文,并且我想将密文存储到数据库中。我需要这方面的帮助。

4

0 回答 0