Update docs

This commit is contained in:
Helder Eijs 2025-03-09 20:13:36 +01:00
parent 3a520b5a82
commit 7b438ce657
3 changed files with 3 additions and 1 deletions

View file

@ -60,7 +60,7 @@ This is how the sender can encrypt two messages::
aead_id=HPKE.AEAD.AES128_GCM)
ct_1 = encryptor.seal(b'Message 1')
ct_2 = encryptor.seal(b'Message 1')
ct_2 = encryptor.seal(b'Message 2')
# The sender will deliver:
# - encryptor.enc

View file

@ -45,6 +45,7 @@ PyCryptodome is a fork of PyCrypto. It brings the following enhancements
with respect to the last official version of PyCrypto (2.6.1):
* Authenticated encryption modes (GCM, CCM, EAX, SIV, OCB)
* Hybrid Public Key Encryption (HPKE)
* Accelerated AES on Intel platforms via AES-NI
* First class support for PyPy
* Elliptic curves cryptography (NIST P-curves; Ed25519, Ed448, Curve25519, Curve448)

View file

@ -77,6 +77,7 @@ with respect to the last official version of PyCrypto (2.6.1),
for instance:
* Authenticated encryption modes (GCM, CCM, EAX, SIV, OCB)
* Hybrid Public Key Encryption (HPKE)
* Accelerated AES on Intel platforms via AES-NI
* First class support for PyPy
* Elliptic curves cryptography (NIST P-curves; Ed25519, Ed448, Curve25519)