The branch openssl-3.0 has been updated via 09ade84a4a9e082c785cb51a9db2e85a45097cbd (commit) from 828bbe3795c82fe060f823ff117a753e81fb48d3 (commit)
- Log ----------------------------------------------------------------- commit 09ade84a4a9e082c785cb51a9db2e85a45097cbd Author: EasySec <easy....@free.fr> Date: Mon Feb 7 23:16:39 2022 +0100 Fix small typo in EVP_KEYEXCH-ECDH.html doc example Reviewed-by: Tomas Mraz <to...@openssl.org> Reviewed-by: Paul Dale <pa...@openssl.org> (Merged from https://github.com/openssl/openssl/pull/17657) (cherry picked from commit 0fdb31669f88cbf5d63ba16d82d95c6c84575dc0) ----------------------------------------------------------------------- Summary of changes: doc/man7/EVP_KEYEXCH-ECDH.pod | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/man7/EVP_KEYEXCH-ECDH.pod b/doc/man7/EVP_KEYEXCH-ECDH.pod index a710625f22..69d0d87b35 100644 --- a/doc/man7/EVP_KEYEXCH-ECDH.pod +++ b/doc/man7/EVP_KEYEXCH-ECDH.pod @@ -88,7 +88,7 @@ key but also using X963KDF with a user key material: size_t secret_len = out_len; unsigned int pad = 1; OSSL_PARAM params[6]; - EVP_PKET_CTX *dctx = EVP_PKEY_CTX_new_from_pkey(NULL, host_key, NULL); + EVP_PKEY_CTX *dctx = EVP_PKEY_CTX_new_from_pkey(NULL, host_key, NULL); EVP_PKEY_derive_init(dctx);