Skip to content

Commit 7b438ce

Browse files
committed
Update docs
1 parent 3a520b5 commit 7b438ce

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

Doc/src/protocol/hpke.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ This is how the sender can encrypt two messages::
6060
aead_id=HPKE.AEAD.AES128_GCM)
6161

6262
ct_1 = encryptor.seal(b'Message 1')
63-
ct_2 = encryptor.seal(b'Message 1')
63+
ct_2 = encryptor.seal(b'Message 2')
6464

6565
# The sender will deliver:
6666
# - encryptor.enc

README.rst

+1
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ PyCryptodome is a fork of PyCrypto. It brings the following enhancements
4545
with respect to the last official version of PyCrypto (2.6.1):
4646

4747
* Authenticated encryption modes (GCM, CCM, EAX, SIV, OCB)
48+
* Hybrid Public Key Encryption (HPKE)
4849
* Accelerated AES on Intel platforms via AES-NI
4950
* First class support for PyPy
5051
* Elliptic curves cryptography (NIST P-curves; Ed25519, Ed448, Curve25519, Curve448)

setup.py

+1
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,7 @@
7777
for instance:
7878
7979
* Authenticated encryption modes (GCM, CCM, EAX, SIV, OCB)
80+
* Hybrid Public Key Encryption (HPKE)
8081
* Accelerated AES on Intel platforms via AES-NI
8182
* First class support for PyPy
8283
* Elliptic curves cryptography (NIST P-curves; Ed25519, Ed448, Curve25519)

0 commit comments

Comments
 (0)