EVP_PKEY-X25519.pod: Correct EVP_PKEY_Q_keygen function name in example

fixup for #14695: Add convenience functions and macros for asymmetric key generation

Reviewed-by: Matt Caswell <matt@openssl.org>
Reviewed-by: Paul Dale <pauli@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/15226)
This commit is contained in:
Dr. David von Oheimb 2021-05-11 15:55:13 +02:00 committed by Pauli
parent 307a38fa5f
commit 7f24110a00

View File

@ -86,7 +86,7 @@ An B<EVP_PKEY> context can be obtained by calling:
An B<X25519> key can be generated like this:
pkey = EVP_Q_keygen(NULL, NULL, "X25519");
pkey = EVP_PKEY_Q_keygen(NULL, NULL, "X25519");
An B<X448>, B<ED25519>, or B<ED448> key can be generated likewise.