From: Ethan Date: Tue, 3 Feb 2026 14:10:45 +0000 (-0500) Subject: doc: changed data_size value for OSSL_PARAM_octet_string() in EVP_SIGNATURE-SLH-DSA.pod X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cb095dd513778ca206759fa34335b1bade8342f5;p=thirdparty%2Fopenssl.git doc: changed data_size value for OSSL_PARAM_octet_string() in EVP_SIGNATURE-SLH-DSA.pod CLA: trivial Reviewed-by: Frederik Wedel-Heinen Reviewed-by: Paul Dale (Merged from https://github.com/openssl/openssl/pull/29933) --- diff --git a/doc/man7/EVP_SIGNATURE-SLH-DSA.pod b/doc/man7/EVP_SIGNATURE-SLH-DSA.pod index c1699793ce3..cde10f3c2f9 100644 --- a/doc/man7/EVP_SIGNATURE-SLH-DSA.pod +++ b/doc/man7/EVP_SIGNATURE-SLH-DSA.pod @@ -96,7 +96,7 @@ To sign a message using an SLH-DSA EVP_PKEY structure: size_t sig_len; unsigned char *sig = NULL; const OSSL_PARAM params[] = { - OSSL_PARAM_octet_string("context-string", (unsigned char *)"A context string", 33), + OSSL_PARAM_octet_string("context-string", (unsigned char *)"A context string", 16), OSSL_PARAM_END }; EVP_PKEY_CTX *sctx = EVP_PKEY_CTX_new_from_pkey(NULL, pkey, NULL);