summaryrefslogtreecommitdiff
path: root/src/lib/libcrypto/doc/EVP_PKEY_keygen.pod
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/lib/libcrypto/doc/EVP_PKEY_keygen.pod6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/libcrypto/doc/EVP_PKEY_keygen.pod b/src/lib/libcrypto/doc/EVP_PKEY_keygen.pod
index 05ea04be11..463c44170e 100644
--- a/src/lib/libcrypto/doc/EVP_PKEY_keygen.pod
+++ b/src/lib/libcrypto/doc/EVP_PKEY_keygen.pod
@@ -29,7 +29,7 @@ EVP_PKEY_CTX_get_app_data - key and parameter generation functions
29=head1 DESCRIPTION 29=head1 DESCRIPTION
30 30
31The EVP_PKEY_keygen_init() function initializes a public key algorithm 31The EVP_PKEY_keygen_init() function initializes a public key algorithm
32context using key B<pkey> for a key genration operation. 32context using key B<pkey> for a key generation operation.
33 33
34The EVP_PKEY_keygen() function performs a key generation operation, the 34The EVP_PKEY_keygen() function performs a key generation operation, the
35generated key is written to B<ppkey>. 35generated key is written to B<ppkey>.
@@ -47,7 +47,7 @@ parameters available is returned. Any non negative value returns the value of
47that parameter. EVP_PKEY_CTX_gen_keygen_info() with a non-negative value for 47that parameter. EVP_PKEY_CTX_gen_keygen_info() with a non-negative value for
48B<idx> should only be called within the generation callback. 48B<idx> should only be called within the generation callback.
49 49
50If the callback returns 0 then the key genration operation is aborted and an 50If the callback returns 0 then the key generation operation is aborted and an
51error occurs. This might occur during a time consuming operation where 51error occurs. This might occur during a time consuming operation where
52a user clicks on a "cancel" button. 52a user clicks on a "cancel" button.
53 53
@@ -67,7 +67,7 @@ once on the same context if several operations are performed using the same
67parameters. 67parameters.
68 68
69The meaning of the parameters passed to the callback will depend on the 69The meaning of the parameters passed to the callback will depend on the
70algorithm and the specifiic implementation of the algorithm. Some might not 70algorithm and the specific implementation of the algorithm. Some might not
71give any useful information at all during key or parameter generation. Others 71give any useful information at all during key or parameter generation. Others
72might not even call the callback. 72might not even call the callback.
73 73