Sortix nightly manual
This manual documents Sortix nightly, a development build that has not been officially released. You can instead view this document in the latest official manual.
NAME
X509V3_extensions_print — pretty-print an array of X.509 extensionsSYNOPSIS
#include <openssl/x509v3.h>X509V3_extensions_print(BIO *bio, char *title, const STACK_OF(X509_EXTENSION) *sk, unsigned long flags, int indent);
DESCRIPTION
For each member of the variable sized array sk, X509V3_extensions_print() prints the following information to bio in the following order:- The extension type as printed by i2a_ASN1_OBJECT(3).
- If the extension is critical, the fixed string “critical”.
- A human-readable representation of the data contained in the extension as printed by X509V3_EXT_print(3), passing through the flags. If that function indicates failure, the BER-encoded data of the extension is dumped with ASN1_STRING_print(3) without decoding it first. In both cases, an indent incremented by 4 space characters is used.