Lines Matching refs:indent
244 static int do_dh_print(BIO *bp, const DH *x, int indent, int ptype)
273 if (!BIO_indent(bp, indent, 128)
276 indent += 4;
278 if (!ASN1_bn_print(bp, "private-key:", priv_key, NULL, indent))
280 if (!ASN1_bn_print(bp, "public-key:", pub_key, NULL, indent))
283 if (!ossl_ffc_params_print(bp, &x->params, indent))
287 if (!BIO_indent(bp, indent, 128)
374 static int dh_param_print(BIO *bp, const EVP_PKEY *pkey, int indent,
377 return do_dh_print(bp, pkey->pkey.dh, indent, 0);
380 static int dh_public_print(BIO *bp, const EVP_PKEY *pkey, int indent,
383 return do_dh_print(bp, pkey->pkey.dh, indent, 1);
386 static int dh_private_print(BIO *bp, const EVP_PKEY *pkey, int indent,
389 return do_dh_print(bp, pkey->pkey.dh, indent, 2);