Searched defs:dh (Results 1 - 4 of 4) sorted by relevance

/solaris-userland/components/openssl/openssl-fips/inline-t4/
H A Ddh_check.c1 /* crypto/dh/dh_check.c */
62 #include <openssl/dh.h>
74 int DH_check(const DH *dh, int *ret) argument
93 if (dh->q) {
94 if (BN_cmp(dh->g, BN_value_one()) <= 0)
96 else if (BN_cmp(dh->g, dh->p) >= 0)
100 if (!BN_mod_exp(t1, dh->g, dh->q, dh
151 DH_check_pub_key(const DH *dh, const BIGNUM *pub_key, int *ret) argument
[all...]
/solaris-userland/components/openssl/common/engines/pkcs11/
H A De_pk11.h122 DH *dh; /* dh key addr */ member in struct:PK11_st_SESSION::__anon5::__anon8
123 BIGNUM *dh_priv_num; /* priv dh key */
149 #define opdata_dh opdata_u.u_DH.dh
H A De_pk11_pub.c89 #include <openssl/dh.h>
172 static int pk11_DH_init(DH *dh);
173 static int pk11_DH_finish(DH *dh);
174 static int pk11_DH_generate_key(DH *dh);
176 const BIGNUM *pub_key, DH *dh);
178 static CK_OBJECT_HANDLE pk11_get_dh_key(DH* dh, DH **key_ptr,
181 static int check_new_dh_key(PK11_SESSION *sp, DH *dh);
2415 pk11_DH_init(DH *dh) argument
2422 pk11_DH_finish(DH *dh) argument
2430 * Warning: Unlike OpenSSL's DH_generate_key(3) we ignore dh
2437 pk11_DH_generate_key(DH *dh) argument
2648 pk11_DH_compute_key(unsigned char *key, const BIGNUM *pub_key, DH *dh) argument
2792 pk11_get_dh_key(DH* dh, DH **key_ptr, BIGNUM **dh_priv_num, CK_SESSION_HANDLE session) argument
2927 check_new_dh_key(PK11_SESSION *sp, DH *dh) argument
[all...]
/solaris-userland/components/openvswitch/files/lib/
H A Ddpif-solaris.c63 dladm_handle_t dh; member in struct:dpif_solaris
243 dladm_handle_t dh = NULL; local
245 status = dladm_open(&dh);
256 dladm_close(dh);
262 dpif->dh = dh;
350 dladm_close(dpif->dh);
527 status = dladm_name2info(dpif->dh, port->linkname, &linkid,
2489 status = dladm_name2info(dpif->dh, physname, &linkid,

Completed in 991 milliseconds