ASN1_bn_print
if (!ASN1_bn_print(bp, "private-key:", priv_key, m, indent))
if (!ASN1_bn_print(bp, "public-key:", pub_key, m, indent))
if (!ASN1_bn_print(bp, "prime:", x->p, m, indent))
if (!ASN1_bn_print(bp, "generator:", x->g, m, indent))
if (!ASN1_bn_print(bp, "priv:", priv_key, m, off))
if (!ASN1_bn_print(bp, "pub: ", pub_key, m, off))
if (!ASN1_bn_print(bp, "P: ", x->p, m, off))
if (!ASN1_bn_print(bp, "Q: ", x->q, m, off))
if (!ASN1_bn_print(bp, "G: ", x->g, m, off))
if (!ASN1_bn_print(bp, "r: ", dsa_sig->r, m, indent))
if (!ASN1_bn_print(bp, "s: ", dsa_sig->s, m, indent))
if ((priv_key != NULL) && !ASN1_bn_print(bp, "priv:", priv_key,
if ((pub_key != NULL) && !ASN1_bn_print(bp, "pub: ", pub_key,
if ((p != NULL) && !ASN1_bn_print(bp, "Polynomial:", p, buffer,
if ((p != NULL) && !ASN1_bn_print(bp, "Prime:", p, buffer, off))
if ((a != NULL) && !ASN1_bn_print(bp, "A: ", a, buffer, off))
if ((b != NULL) && !ASN1_bn_print(bp, "B: ", b, buffer, off))
if ((gen != NULL) && !ASN1_bn_print(bp, gen_compressed, gen,
if ((gen != NULL) && !ASN1_bn_print(bp, gen_uncompressed, gen,
if ((gen != NULL) && !ASN1_bn_print(bp, gen_hybrid, gen,
if ((order != NULL) && !ASN1_bn_print(bp, "Order: ", order,
if ((cofactor != NULL) && !ASN1_bn_print(bp, "Cofactor: ", cofactor,
if (!ASN1_bn_print(bp, str, x->n, m, off))
if (!ASN1_bn_print(bp, s, x->e, m, off))
if (!ASN1_bn_print(bp, "privateExponent:", x->d, m, off))
if (!ASN1_bn_print(bp, "prime1:", x->p, m, off))
if (!ASN1_bn_print(bp, "prime2:", x->q, m, off))
if (!ASN1_bn_print(bp, "exponent1:", x->dmp1, m, off))
if (!ASN1_bn_print(bp, "exponent2:", x->dmq1, m, off))
if (!ASN1_bn_print(bp, "coefficient:", x->iqmp, m, off))
int ASN1_bn_print(BIO *bp, const char *number, const BIGNUM *num,