docs: Fix typo EVP_PKEY_new_id -> EVP_PKEY_CTX_new_id
authorRichard Levitte <levitte@openssl.org>
Fri, 4 May 2018 17:45:52 +0000 (19:45 +0200)
committerRichard Levitte <levitte@openssl.org>
Fri, 4 May 2018 22:11:35 +0000 (00:11 +0200)
Reviewed-by: Tim Hudson <tjh@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/6178)

doc/crypto/EVP_PKEY_CTX_set_hkdf_md.pod
doc/crypto/EVP_PKEY_CTX_set_tls1_prf_md.pod

index 61e0eec52882ab6bb44eea362b05656c40cb6d82..8cda1076a778b481bead4573ae6bb0c0a9d879a4 100644 (file)
@@ -59,7 +59,7 @@ All these functions are implemented as macros.
 
 A context for HKDF can be obtained by calling:
 
- EVP_PKEY_CTX *pctx = EVP_PKEY_new_id(EVP_PKEY_HKDF, NULL);
+ EVP_PKEY_CTX *pctx = EVP_PKEY_CTX_new_id(EVP_PKEY_HKDF, NULL);
 
 The digest, key, salt and info values must be set before a key is derived or
 an error occurs.
index f1f0ae4fbe4d90be84e20ccaa6ec8da2eb4dd303..8aa2152120fa64478bc8341558b9a6021cbccd65 100644 (file)
@@ -50,7 +50,7 @@ All these functions are implemented as macros.
 
 A context for the TLS PRF can be obtained by calling:
 
- EVP_PKEY_CTX *pctx = EVP_PKEY_new_id(EVP_PKEY_TLS1_PRF, NULL);
+ EVP_PKEY_CTX *pctx = EVP_PKEY_CTX_new_id(EVP_PKEY_TLS1_PRF, NULL);
 
 The digest, secret value and seed must be set before a key is derived or an
 error occurs.