]> git.ipfire.org Git - thirdparty/openssl.git/commitdiff
Correct documented KEM ids for OSSL_HPKE_str2suite
authorTom Fay <tom@teamfay.co.uk>
Thu, 12 Dec 2024 09:38:54 +0000 (09:38 +0000)
committerTomas Mraz <tomas@openssl.org>
Wed, 15 Jan 2025 15:03:51 +0000 (16:03 +0100)
CLA: trivial

Reviewed-by: Hugo Landau <hlandau@devever.net>
Reviewed-by: Tomas Mraz <tomas@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/26159)

doc/man3/OSSL_HPKE_CTX_new.pod

index 6055ba6ea139e9ccde673e3a69ca9b12c7f83549..b282dc471a05598f03721c8c6b993959291ba1c9 100644 (file)
@@ -454,9 +454,9 @@ 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".
 This can be used by command line tools that accept string form names for HPKE
 codepoints. Valid (case-insensitive) names are:
-"p256", "p384", "p521", "x25519" and "x448" for KEM,
-"hkdf-SHA256", "hkdf-SHA384" and "hkdf-SHA512" for KDF, and
-"aes-gcm-128", "aes-gcm-256" and "chacha20-poly1305" for AEAD.
+"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.
 String variants of the numbers listed in L</OSSL_HPKE_SUITE Identifiers>
 can also be used.