“pycryptodome rsa crypt” Réponses codées

pycryptodome rsa crypt

>>> from Crypto.Cipher import PKCS1_v1_5
>>> from Crypto.PublicKey import RSA
>>> from Crypto.Hash import SHA
>>>
>>> message = b'To be encrypted'
>>> h = SHA.new(message)
>>>
>>> key = RSA.importKey(open('pubkey.der').read())
>>> cipher = PKCS1_v1_5.new(key)
>>> ciphertext = cipher.encrypt(message+h.digest())
Attractive Angelfish

pycryptodome rsa crypt

from Crypto.Cipher import AES
from Crypto.Random import get_random_bytes

key = get_random_bytes(16)
cipher = AES.new(key, AES.MODE_EAX)
ciphertext, tag = cipher.encrypt_and_digest(data)

file_out = open("encrypted.bin", "wb")
[ file_out.write(x) for x in (cipher.nonce, tag, ciphertext) ]
file_out.close()
Attractive Angelfish

Réponses similaires à “pycryptodome rsa crypt”

Questions similaires à “pycryptodome rsa crypt”

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code