Home | History | Annotate | Download | only in x509v3

Lines Matching refs:indent

75 static int i2r_certpol(X509V3_EXT_METHOD *method, STACK_OF(POLICYINFO) *pol, BIO *out, int indent);
77 static void print_qualifiers(BIO *out, STACK_OF(POLICYQUALINFO) *quals, int indent);
78 static void print_notice(BIO *out, USERNOTICE *notice, int indent);
389 BIO *out, int indent)
396 BIO_printf(out, "%*sPolicy: ", indent, "");
400 print_qualifiers(out, pinfo->qualifiers, indent + 2);
406 int indent)
415 BIO_printf(out, "%*sCPS: %s\n", indent, "",
420 BIO_printf(out, "%*sUser Notice:\n", indent, "");
421 print_notice(out, qualinfo->d.usernotice, indent + 2);
426 indent + 2, "");
435 static void print_notice(BIO *out, USERNOTICE *notice, int indent)
441 BIO_printf(out, "%*sOrganization: %s\n", indent, "",
443 BIO_printf(out, "%*sNumber%s: ", indent, "",
457 BIO_printf(out, "%*sExplicit Text: %s\n", indent, "",
461 void X509_POLICY_NODE_print(BIO *out, X509_POLICY_NODE *node, int indent)
465 BIO_printf(out, "%*sPolicy: ", indent, "");
469 BIO_printf(out, "%*s%s\n", indent + 2, "",
472 print_qualifiers(out, dat->qualifier_set, indent + 2);
474 BIO_printf(out, "%*sNo Qualifiers\n", indent + 2, "");