Home | History | Annotate | Download | only in ssl

Lines Matching refs:dh_tmp

214 	if (cert->dh_tmp != NULL)
216 ret->dh_tmp = DHparams_dup(cert->dh_tmp);
217 if (ret->dh_tmp == NULL)
222 if (cert->dh_tmp->priv_key)
224 BIGNUM *b = BN_dup(cert->dh_tmp->priv_key);
230 ret->dh_tmp->priv_key = b;
232 if (cert->dh_tmp->pub_key)
234 BIGNUM *b = BN_dup(cert->dh_tmp->pub_key);
240 ret->dh_tmp->pub_key = b;
320 if (ret->dh_tmp != NULL)
321 DH_free(ret->dh_tmp);
364 if (c->dh_tmp) DH_free(c->dh_tmp);