Lines Matching defs:indent
331 do_dh_print(BIO *bp, const DH *x, int indent, ASN1_PCTX *ctx, int ptype)
359 if (!BIO_indent(bp, indent, 128))
363 indent += 4;
365 if (!bn_printf(bp, priv_key, indent, "private-key:"))
367 if (!bn_printf(bp, pub_key, indent, "public-key:"))
370 if (!bn_printf(bp, x->p, indent, "prime:"))
372 if (!bn_printf(bp, x->g, indent, "generator:"))
375 if (!BIO_indent(bp, indent, 128))
456 dh_param_print(BIO *bp, const EVP_PKEY *pkey, int indent, ASN1_PCTX *ctx)
458 return do_dh_print(bp, pkey->pkey.dh, indent, ctx, 0);
462 dh_public_print(BIO *bp, const EVP_PKEY *pkey, int indent, ASN1_PCTX *ctx)
464 return do_dh_print(bp, pkey->pkey.dh, indent, ctx, 1);
468 dh_private_print(BIO *bp, const EVP_PKEY *pkey, int indent, ASN1_PCTX *ctx)
470 return do_dh_print(bp, pkey->pkey.dh, indent, ctx, 2);