Home | History | Annotate | Download | only in ssl

Lines Matching refs:dh_clnt

2273 			DH *dh_srvr,*dh_clnt;
2293 if ((dh_clnt=DHparams_dup(dh_srvr)) == NULL)
2298 if (!DH_generate_key(dh_clnt))
2307 n=DH_compute_key(p,dh_srvr->pub_key,dh_clnt);
2323 n=BN_num_bytes(dh_clnt->pub_key);
2325 BN_bn2bin(dh_clnt->pub_key,p);
2328 DH_free(dh_clnt);