/third_party/openssl/doc/man3/ |
D | DH_new.pod | 5 DH_new, DH_free - allocate and free DH objects 15 DH* DH_new(void); 21 DH_new() allocates and initializes a B<DH> structure. 29 If the allocation fails, DH_new() returns B<NULL> and sets an error 37 L<DH_new(3)>, L<ERR_get_error(3)>,
|
D | DH_meth_new.pod | 122 called in response to the application calling DH_new() (if the current default 123 DH_METHOD is this one) or DH_new_method(). The DH_new() and DH_new_method() 158 L<DH_new(3)>, L<DH_new(3)>, L<DH_generate_parameters(3)>, L<DH_generate_key(3)>,
|
D | DH_set_method.pod | 84 L<DH_new(3)>, L<DH_new(3)>, L<DH_meth_new(3)>
|
D | DSA_dup_DH.pod | 38 L<DH_new(3)>, L<DSA_new(3)>, L<ERR_get_error(3)>
|
D | DH_size.pod | 53 L<DH_new(3)>, L<DH_generate_key(3)>,
|
D | DH_get0_pqg.pod | 133 L<DH_new(3)>, L<DH_new(3)>, L<DH_generate_parameters(3)>, L<DH_generate_key(3)>,
|
D | DH_generate_key.pod | 65 L<DH_new(3)>, L<ERR_get_error(3)>, L<RAND_bytes(3)>, L<DH_size(3)>
|
/third_party/node/deps/openssl/openssl/include/openssl/ |
D | dh.h | 171 (DH *)ASN1_d2i_fp((char *(*)())DH_new, \ 178 ASN1_d2i_bio_of(DH, DH_new, d2i_DHparams, bp, x) 183 (DH *)ASN1_d2i_fp((char *(*)())DH_new, \ 190 ASN1_d2i_bio_of(DH, DH_new, d2i_DHxparams, bp, x) 203 OSSL_DEPRECATEDIN_3_0 DH *DH_new(void);
|
/third_party/openssl/include/openssl/ |
D | dh.h | 171 (DH *)ASN1_d2i_fp((char *(*)())DH_new, \ 178 ASN1_d2i_bio_of(DH, DH_new, d2i_DHparams, bp, x) 183 (DH *)ASN1_d2i_fp((char *(*)())DH_new, \ 190 ASN1_d2i_bio_of(DH, DH_new, d2i_DHxparams, bp, x) 203 OSSL_DEPRECATEDIN_3_0 DH *DH_new(void);
|
/third_party/openssl/ohos_lite/include/openssl/ |
D | dh.h | 92 (DH *)ASN1_d2i_fp((char *(*)())DH_new, \ 99 ASN1_d2i_bio_of(DH, DH_new, d2i_DHparams, bp, x) 104 (DH *)ASN1_d2i_fp((char *(*)())DH_new, \ 111 ASN1_d2i_bio_of(DH, DH_new, d2i_DHxparams, bp, x) 124 DH *DH_new(void);
|
/third_party/openssl/test/ |
D | dhtest.c | 57 if (!TEST_ptr(dh = DH_new()) in dh_test() 135 if (!TEST_ptr(a = DH_new()) in dh_test() 158 if (!TEST_ptr(b = DH_new())) in dh_test() 249 || !TEST_ptr(dh = DH_new()) in dh_computekey_range_test() 787 DH *dh2 = DH_new(); in dh_get_nid()
|
/third_party/node/deps/openssl/openssl/crypto/dh/ |
D | dh_asn1.c | 29 *pval = (ASN1_VALUE *)DH_new(); in dh_cb() 99 dh = DH_new(); in IMPLEMENT_ASN1_ENCODE_FUNCTIONS_fname()
|
D | dh_pmeth.c | 287 ret = DH_new(); in ffc_params_generate() 361 dh = DH_new(); in pkey_dh_paramgen() 388 dh = DH_new(); in pkey_dh_keygen()
|
D | dh_depr.c | 31 if ((ret = DH_new()) == NULL) in DH_generate_parameters()
|
D | dh_rfc5114.c | 31 DH *dh = DH_new(); \
|
D | dh_ameth.c | 336 ret = DH_new(); in DHparams_dup() 349 to->pkey.dh = DH_new(); in dh_copy_parameters()
|
D | dh_lib.c | 57 DH *DH_new(void) in DH_new() function
|
/third_party/openssl/crypto/dh/ |
D | dh_asn1.c | 29 *pval = (ASN1_VALUE *)DH_new(); in dh_cb() 99 dh = DH_new(); in IMPLEMENT_ASN1_ENCODE_FUNCTIONS_fname()
|
D | dh_pmeth.c | 287 ret = DH_new(); in ffc_params_generate() 361 dh = DH_new(); in pkey_dh_paramgen() 388 dh = DH_new(); in pkey_dh_keygen()
|
D | dh_depr.c | 31 if ((ret = DH_new()) == NULL) in DH_generate_parameters()
|
D | dh_rfc5114.c | 31 DH *dh = DH_new(); \
|
D | dh_ameth.c | 336 ret = DH_new(); in DHparams_dup() 349 to->pkey.dh = DH_new(); in dh_copy_parameters()
|
/third_party/node/src/crypto/ |
D | crypto_dh.cc | 135 dh_.reset(DH_new()); in Init() 146 dh_.reset(DH_new()); in Init() 155 dh_.reset(DH_new()); in Init() 179 dh_.reset(DH_new()); in Init() 551 DHPointer dh(DH_new()); in Setup()
|
/third_party/rust/crates/rust-openssl/openssl-sys/src/handwritten/ |
D | dh.rs | 4 pub fn DH_new() -> *mut DH; in DH_new() function
|
/third_party/rust/crates/rust-openssl/openssl/src/ |
D | dh.rs | 67 let dh = Dh::from_ptr(cvt_p(ffi::DH_new())?); in from_pqg() 116 let dh = Dh::from_ptr(cvt_p(ffi::DH_new())?); in generate_params()
|