Home | History | Annotate | Download | only in dh

Lines Matching defs:pub_key

110   BN_clear_free(dh->pub_key);
120 *out_pub_key = dh->pub_key;
260 BIGNUM *pub_key = NULL, *priv_key = NULL;
282 if (dh->pub_key == NULL) {
283 pub_key = BN_new();
284 if (pub_key == NULL) {
288 pub_key = dh->pub_key;
319 if (!BN_mod_exp_mont_consttime(pub_key, dh->g, priv_key, dh->p, ctx,
324 dh->pub_key = pub_key;
333 if (dh->pub_key == NULL) {
334 BN_free(pub_key);