]> git.ipfire.org Git - thirdparty/openssl.git/commitdiff
OSSL_HPKE_CTX_new.pod: Correct the valid AEAD names for HPKE
authorTomas Mraz <tomas@openssl.org>
Tue, 24 Feb 2026 07:23:25 +0000 (08:23 +0100)
committerTomas Mraz <tomas@openssl.org>
Wed, 25 Feb 2026 08:15:13 +0000 (09:15 +0100)
Reviewed-by: Nikola Pajkovsky <nikolap@openssl.org>
Reviewed-by: Norbert Pocs <norbertp@openssl.org>
Reviewed-by: Matt Caswell <matt@openssl.org>
MergeDate: Wed Feb 25 08:15:23 2026
(Merged from https://github.com/openssl/openssl/pull/30152)

doc/man3/OSSL_HPKE_CTX_new.pod

index 89a6fcafe1337a10d67801f8e49083f8c1d13e91..2c100277086c8cad25674937aab0132ae97cee7e 100644 (file)
@@ -451,12 +451,12 @@ OSSL_HPKE_get_ciphertext_size() and OSSL_HPKE_get_public_encap_size().
 
 OSSL_HPKE_str2suite() maps input I<str> strings to an B<OSSL_HPKE_SUITE> object.
 The input I<str> should be a comma-separated string with a KEM,
-KDF and AEAD name in that order, for example "x25519,hkdf-sha256,aes128gcm".
+KDF and AEAD name in that order, for example "x25519,hkdf-sha256,aes-128-gcm".
 This can be used by command line tools that accept string form names for HPKE
 codepoints. Valid (case-insensitive) names are:
 "p-256", "p-384", "p-521", "x25519" and "x448" for KEM,
 "hkdf-sha256", "hkdf-sha384" and "hkdf-sha512" for KDF, and
-"aes-gcm-128", "aes-gcm-256", "chacha20-poly1305" and "exporter" for AEAD.
+"aes-128-gcm", "aes-256-gcm", "chacha20-poly1305" and "exporter" for AEAD.
 String variants of the numbers listed in L</OSSL_HPKE_SUITE Identifiers>
 can also be used.