/third_party/rust/crates/rust-openssl/openssl/src/ |
D | dh.rs | 83 cvt(DH_set0_key(dh_ptr, pub_key.as_ptr(), ptr::null_mut()))?; in set_public_key() 93 cvt(DH_set0_key(dh_ptr, ptr::null_mut(), priv_key.as_ptr()))?; in set_private_key() 106 cvt(DH_set0_key(dh_ptr, pub_key.as_ptr(), priv_key.as_ptr()))?; in set_key() 273 use ffi::{DH_set0_pqg, DH_get0_pqg, DH_get0_key, DH_set0_key}; 307 unsafe fn DH_set0_key(
|
/third_party/openssl/doc/man3/ |
D | DH_get0_pqg.pod | 5 DH_get0_pqg, DH_set0_pqg, DH_get0_key, DH_set0_key, 24 int DH_set0_key(DH *dh, BIGNUM *pub_key, BIGNUM *priv_key); 77 The public and private key values can be set using DH_set0_key(). Either 112 in the call and may therefore I<not> be passed to DH_set0_key(). If 118 DH_set0_pqg() and DH_set0_key() return 1 on success or 0 on failure.
|
/third_party/openssl/test/ |
D | dhtest.c | 106 || !TEST_true(DH_set0_key(dh, NULL, priv_key))) in dh_test() 182 || !TEST_true(DH_set0_key(c, NULL, cpriv_key))) in dh_test() 261 || !TEST_true(DH_set0_key(dh, NULL, priv))) in dh_computekey_range_test() 575 || !TEST_true(DH_set0_key(dhA, pub_key, priv_key))) in rfc5114_test() 580 || !TEST_true( DH_set0_key(dhB, pub_key, priv_key))) in rfc5114_test()
|
D | evp_extra_test.c | 2930 || !TEST_true(DH_set0_key(noqdh, pubkey, NULL)) in test_EVP_PKEY_set1_DH() 2943 || !TEST_true(DH_set0_key(x942dh, pubkey, NULL))) in test_EVP_PKEY_set1_DH()
|
/third_party/openssl/crypto/dh/ |
D | dh_backend.c | 86 if (!DH_set0_key(dh, pub_key, priv_key)) in ossl_dh_key_fromdata() 233 if (!DH_set0_key(dh, NULL, privkey_bn)) in ossl_dh_key_from_pkcs8()
|
D | dh_lib.c | 261 int DH_set0_key(DH *dh, BIGNUM *pub_key, BIGNUM *priv_key) in DH_set0_key() function
|
D | dh_key.c | 404 if (DH_set0_key(dh, pubkey, NULL) != 1) in ossl_dh_buf2key()
|
/third_party/node/deps/openssl/openssl/crypto/dh/ |
D | dh_backend.c | 86 if (!DH_set0_key(dh, pub_key, priv_key)) in ossl_dh_key_fromdata() 233 if (!DH_set0_key(dh, NULL, privkey_bn)) in ossl_dh_key_from_pkcs8()
|
D | dh_lib.c | 263 int DH_set0_key(DH *dh, BIGNUM *pub_key, BIGNUM *priv_key) in DH_set0_key() function
|
D | dh_key.c | 403 if (DH_set0_key(dh, pubkey, NULL) != 1) in ossl_dh_buf2key()
|
/third_party/rust/crates/rust-openssl/openssl-sys/src/handwritten/ |
D | dh.rs | 47 pub fn DH_set0_key(dh: *mut DH, pub_key: *mut BIGNUM, priv_key: *mut BIGNUM) -> c_int; in DH_set0_key() function
|
/third_party/openssl/crypto/dsa/ |
D | dsa_lib.c | 69 if (!DH_set0_key(ret, pub_key, priv_key)) in DSA_dup_DH()
|
/third_party/node/deps/openssl/openssl/crypto/dsa/ |
D | dsa_lib.c | 69 if (!DH_set0_key(ret, pub_key, priv_key)) in DSA_dup_DH()
|
/third_party/node/src/crypto/ |
D | crypto_dh.cc | 462 [](DH* dh, BIGNUM* num) { return DH_set0_key(dh, num, nullptr); }, in SetPublicKey() 468 [](DH* dh, BIGNUM* num) { return DH_set0_key(dh, nullptr, num); }, in SetPrivateKey()
|
/third_party/node/deps/openssl/openssl/include/openssl/ |
D | dh.h | 262 OSSL_DEPRECATEDIN_3_0 int DH_set0_key(DH *dh, BIGNUM *pub_key, BIGNUM *priv_key);
|
/third_party/openssl/include/openssl/ |
D | dh.h | 262 OSSL_DEPRECATEDIN_3_0 int DH_set0_key(DH *dh, BIGNUM *pub_key, BIGNUM *priv_key);
|
/third_party/openssl/ohos_lite/include/openssl/ |
D | dh.h | 185 int DH_set0_key(DH *dh, BIGNUM *pub_key, BIGNUM *priv_key);
|
/third_party/rust/crates/rust-openssl/openssl-sys/ |
D | CHANGELOG.md | 314 * Added `DH_set0_key`.
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/crypto/ |
D | crypto_openssl.c | 910 if (!priv_key || !pub_key || DH_set0_key(dh, pub_key, priv_key) != 1) in dh5_init_fixed()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/crypto/ |
D | crypto_openssl.c | 983 if (!priv_key || !pub_key || DH_set0_key(dh, pub_key, priv_key) != 1) in dh5_init_fixed()
|
/third_party/openssl/doc/man7/ |
D | migration_guide.pod | 1393 DH_set0_key(), DH_set0_pqg(), DH_set_length()
|
/third_party/node/deps/openssl/openssl/util/ |
D | libcrypto.num | 3952 DH_set0_key 4044 3_0_0 EXIST::FUNCTION:DEPRECATEDIN_3_0,DH
|
/third_party/openssl/util/ |
D | libcrypto.num | 3952 DH_set0_key 4044 3_0_0 EXIST::FUNCTION:DEPRECATEDIN_3_0,DH
|