]> git.ipfire.org Git - thirdparty/openssl.git/commitdiff
EVP_PKEY_keygen_init has no argument named pkey
authorMattias Ellert <mattias.ellert@physics.uu.se>
Sat, 25 Sep 2021 02:55:24 +0000 (04:55 +0200)
committerPauli <pauli@openssl.org>
Tue, 28 Sep 2021 00:18:11 +0000 (10:18 +1000)
int EVP_PKEY_keygen_init(EVP_PKEY_CTX *ctx);

So it should not mention it in the man page description.

Reviewed-by: Richard Levitte <levitte@openssl.org>
Reviewed-by: Paul Dale <pauli@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/16675)

doc/man3/EVP_PKEY_keygen.pod

index f21314504e653f05cffd9168fd40fedb84ea9bd6..87644cc5c3756863ae9ab656d4634424d0107006 100644 (file)
@@ -51,8 +51,8 @@ key generation function itself.
 The key algorithm context must be created using L<EVP_PKEY_CTX_new(3)> or
 variants thereof, see that manual for details.
 
-EVP_PKEY_keygen_init() initializes a public key algorithm context using key
-I<pkey> for a key generation operation.
+EVP_PKEY_keygen_init() initializes a public key algorithm context I<ctx>
+for a key generation operation.
 
 EVP_PKEY_paramgen_init() is similar to EVP_PKEY_keygen_init() except key
 parameters are generated.