Lines Matching full:generation
12 - key and parameter generation and check functions
43 may want to set user provided generation parameters that further affect key
44 parameter or key generation, such as the desired key size.
47 generation is divided into an initialization of a key algorithm context,
49 key generation function itself.
55 for a key generation operation.
60 After initialization, generation parameters may be provided with
64 EVP_PKEY_generate() performs the generation operation, the resulting key
75 The function EVP_PKEY_set_cb() sets the key or parameter generation callback
77 generation callback.
80 with the generation operation. If I<idx> is -1 the total number of
83 I<idx> should only be called within the generation callback.
85 If the callback returns 0 then the key generation operation is aborted and an
96 It provides shorthands for simple and common cases of key generation.
127 give any useful information at all during key or parameter generation. Others
130 The operation performed by key or parameter generation depends on the algorithm
131 used. In some cases (e.g. EC with a supplied named curve) the "generation"
181 Example of generation callback for OpenSSL public key implementations: