summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDr. David von Oheimb <David.von.Oheimb@siemens.com>2021-05-11 15:55:13 +0200
committerPauli <pauli@openssl.org>2021-05-13 11:56:47 +1000
commit7f24110a005496617110495e826d283900a028b7 (patch)
treee7ef8f4cfcf8f946b8ead15e5fa57eeee45b3d5a
parent307a38fa5fafd715b02f31b2c861b47bd38ed509 (diff)
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)
-rw-r--r--doc/man7/EVP_PKEY-X25519.pod2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/man7/EVP_PKEY-X25519.pod b/doc/man7/EVP_PKEY-X25519.pod
index a597bc53be..509f065c56 100644
--- a/doc/man7/EVP_PKEY-X25519.pod
+++ b/doc/man7/EVP_PKEY-X25519.pod
@@ -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.