Lines Matching +full:no +full:- +full:engine
7 RSA_new_method - select RSA method
29 RSA *RSA_new_method(ENGINE *engine);
40 use of B<ENGINE> API calls.
47 B<NB>: This is true only whilst no ENGINE has
48 been set as a default for RSA, so this function is no longer recommended.
49 This function is not thread-safe and should not be called at the same time
54 whether the ENGINE API is being used, so this function is no longer
59 previous method was supplied by an ENGINE, the handle to that ENGINE will
61 work with certain RSA_METHOD implementations (e.g. from an ENGINE module
62 that supports embedded hardware-protected keys), and in such cases
67 This method may or may not be supplied by an ENGINE implementation, but if
76 B<engine> will be used for the RSA operations. If B<engine> is NULL, the
77 default ENGINE for RSA operations is used, and if no default ENGINE is set,
109 /* compute r0 = r0 ^ I mod rsa->n (May be NULL for some implementations) */
123 * RSA_FLAG_EXT_PKEY - rsa_mod_exp is called for private key
126 * RSA_METHOD_FLAG_NO_CHECK - don't check pub/private match
139 /* keygen. If NULL built-in RSA key generation will be used */
149 RSA_set_default_method() returns no value.
153 because if it was supplied by an ENGINE, the pointer could be invalidated
154 at any time if the ENGINE is unloaded (in fact it could be unloaded as a
156 ENGINE). For this reason, the return type may be replaced with a B<void>
165 The behaviour of RSA_flags() is a mis-feature that is left as-is for now
171 be reflected in the return value of the RSA_flags() function - in effect
188 Copyright 2000-2021 The OpenSSL Project Authors. All Rights Reserved.