Lines Matching refs:priv_key
217 const BIGNUM *priv_key = NULL, *pub_key = NULL; in dh_to_text() local
234 priv_key = DH_get0_priv_key(dh); in dh_to_text()
235 if (priv_key == NULL) { in dh_to_text()
263 if (priv_key != NULL in dh_to_text()
264 && !print_labeled_bignum(out, "private-key:", priv_key)) in dh_to_text()
287 const BIGNUM *priv_key = NULL, *pub_key = NULL; in dsa_to_text() local
304 priv_key = DSA_get0_priv_key(dsa); in dsa_to_text()
305 if (priv_key == NULL) { in dsa_to_text()
333 if (priv_key != NULL in dsa_to_text()
334 && !print_labeled_bignum(out, "priv:", priv_key)) in dsa_to_text()
509 const BIGNUM *priv_key = EC_KEY_get0_private_key(ec); in ec_to_text() local
511 if (priv_key == NULL) { in ec_to_text()