mirror of
https://github.com/Legrandin/pycryptodome.git
synced 2025-10-19 07:53:49 +00:00
Update docs
This commit is contained in:
parent
3a520b5a82
commit
7b438ce657
3 changed files with 3 additions and 1 deletions
|
@ -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
|
||||
|
|
|
@ -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)
|
||||
|
|
1
setup.py
1
setup.py
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue