Home | History | Annotate | Download | only in x509v3

Lines Matching refs:indent

70 static int i2r_certpol(X509V3_EXT_METHOD *method, STACK_OF(POLICYINFO) *pol, BIO *out, int indent);
72 static void print_qualifiers(BIO *out, STACK_OF(POLICYQUALINFO) *quals, int indent);
73 static void print_notice(BIO *out, USERNOTICE *notice, int indent);
366 BIO *out, int indent)
373 BIO_printf(out, "%*sPolicy: ", indent, "");
377 print_qualifiers(out, pinfo->qualifiers, indent + 2);
383 int indent)
392 BIO_printf(out, "%*sCPS: %s\n", indent, "",
397 BIO_printf(out, "%*sUser Notice:\n", indent, "");
398 print_notice(out, qualinfo->d.usernotice, indent + 2);
403 indent + 2, "");
412 static void print_notice(BIO *out, USERNOTICE *notice, int indent)
418 BIO_printf(out, "%*sOrganization: %s\n", indent, "",
420 BIO_printf(out, "%*sNumber%s: ", indent, "",
434 BIO_printf(out, "%*sExplicit Text: %s\n", indent, "",
438 void X509_POLICY_NODE_print(BIO *out, X509_POLICY_NODE *node, int indent)
442 BIO_printf(out, "%*sPolicy: ", indent, "");
446 BIO_printf(out, "%*s%s\n", indent + 2, "",
449 print_qualifiers(out, dat->qualifier_set, indent + 2);
451 BIO_printf(out, "%*sNo Qualifiers\n", indent + 2, "");