Lines Matching defs:pub_key
159 BN_free(dh->pub_key);
267 DH_get0_key(const DH *dh, const BIGNUM **pub_key, const BIGNUM **priv_key)
269 if (pub_key != NULL)
270 *pub_key = dh->pub_key;
277 DH_set0_key(DH *dh, BIGNUM *pub_key, BIGNUM *priv_key)
279 if (pub_key != NULL) {
280 BN_free(dh->pub_key);
281 dh->pub_key = pub_key;
323 return dh->pub_key;