Lines Matching +full:no +full:- +full:engine
6 DH_set_method, DH_new_method, DH_OpenSSL - select DH method
22 DH *DH_new_method(ENGINE *engine);
31 A B<DH_METHOD> specifies the functions that OpenSSL uses for Diffie-Hellman
35 of B<ENGINE> API calls.
42 B<NB>: This is true only whilst no ENGINE has been set
43 as a default for DH, so this function is no longer recommended.
44 This function is not thread-safe and should not be called at the same time
48 However, the meaningfulness of this result is dependent on whether the ENGINE
49 API is being used, so this function is no longer recommended.
53 was supplied by an ENGINE, the handle to that ENGINE will be released during the
55 implementations (e.g. from an ENGINE module that supports embedded
56 hardware-protected keys), and in such cases attempting to change the DH_METHOD
59 DH_new_method() allocates and initializes a DH structure so that B<engine> will
60 be used for the DH operations. If B<engine> is NULL, the default ENGINE for DH
61 operations is used, and if no default ENGINE is set, the DH_METHOD controlled by
72 DH_set_default_method() returns no value.
75 the method for B<dh> (including unloading the ENGINE handle if the previous
76 method was supplied by an ENGINE).
92 Copyright 2000-2021 The OpenSSL Project Authors. All Rights Reserved.