HomeSort by: relevance | last modified time | path
    Searched defs:dh1 (Results 1 - 6 of 6) sorted by relevancy

  /src/crypto/external/bsd/heimdal/dist/lib/hcrypto/
test_dh.c 329 DH *dh1, *dh2; local
340 dh1 = DH_new_method(engine);
346 dh1->p = BN_dup(p);
347 dh1->g = BN_dup(g);
352 ret = DH_generate_key(dh1);
364 size = DH_size(dh1);
375 ret = DH_compute_key(sec1, dh2->pub_key, dh1);
380 ret = DH_compute_key(sec2, dh1->pub_key, dh2);
402 DH_free(dh1);
  /src/external/mpl/dhcp/bind/dist/lib/dns/
openssldh_link.c 189 DH *dh1, *dh2; local
194 dh1 = key1->keydata.dh;
197 if (dh1 == NULL && dh2 == NULL) {
199 } else if (dh1 == NULL || dh2 == NULL) {
203 DH_get0_key(dh1, &pub_key1, &priv_key1);
205 DH_get0_pqg(dh1, &p1, NULL, &g1);
227 DH *dh1, *dh2; local
230 dh1 = key1->keydata.dh;
233 if (dh1 == NULL && dh2 == NULL) {
235 } else if (dh1 == NULL || dh2 == NULL)
    [all...]
  /src/crypto/external/apache2/openssl/dist/providers/implementations/keymgmt/
dh_kmgmt.c 153 const DH *dh1 = keydata1; local
164 const BIGNUM *pa = DH_get0_pub_key(dh1);
174 const BIGNUM *pa = DH_get0_priv_key(dh1);
185 FFC_PARAMS *dhparams1 = ossl_dh_get0_params((DH *)dh1);
  /src/crypto/external/apache2/openssl/dist/test/
dhtest.c 809 DH *dh1 = DH_new_by_nid(NID_ffdhe2048); local
812 if (!TEST_ptr(dh1)
817 DH_get0_pqg(dh1, &p, &q, &g);
862 DH_free(dh1);
  /src/crypto/external/bsd/openssl/dist/providers/implementations/keymgmt/
dh_kmgmt.c 150 const DH *dh1 = keydata1; local
161 const BIGNUM *pa = DH_get0_pub_key(dh1);
171 const BIGNUM *pa = DH_get0_priv_key(dh1);
182 FFC_PARAMS *dhparams1 = ossl_dh_get0_params((DH *)dh1);
  /src/crypto/external/bsd/openssl/dist/test/
dhtest.c 809 DH *dh1 = DH_new_by_nid(NID_ffdhe2048); local
812 if (!TEST_ptr(dh1)
817 DH_get0_pqg(dh1, &p, &q, &g);
862 DH_free(dh1);

Completed in 27 milliseconds