Home | History | Annotate | Download | only in ssl

Lines Matching refs:dh_tmp

230 	if (cert->dh_tmp != NULL)
232 ret->dh_tmp = DHparams_dup(cert->dh_tmp);
233 if (ret->dh_tmp == NULL)
238 if (cert->dh_tmp->priv_key)
240 BIGNUM *b = BN_dup(cert->dh_tmp->priv_key);
246 ret->dh_tmp->priv_key = b;
248 if (cert->dh_tmp->pub_key)
250 BIGNUM *b = BN_dup(cert->dh_tmp->pub_key);
256 ret->dh_tmp->pub_key = b;
340 if (ret->dh_tmp != NULL)
341 DH_free(ret->dh_tmp);
384 if (c->dh_tmp) DH_free(c->dh_tmp);