The branch master has been updated
via 0fdb31669f88cbf5d63ba16d82d95c6c84575dc0 (commit)
from 3a23f01268ec47bf3423b849cc226be220745522 (commit)
- Log -----------------------------------------------------------------
commit 0fdb31669f88cbf5d63ba16d82d95c6c84575dc0
Author: EasySec <[email protected]>
Date: Mon Feb 7 23:16:39 2022 +0100
Fix small typo in EVP_KEYEXCH-ECDH.html doc example
Reviewed-by: Tomas Mraz <[email protected]>
Reviewed-by: Paul Dale <[email protected]>
(Merged from https://github.com/openssl/openssl/pull/17657)
-----------------------------------------------------------------------
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);