logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

OSSL_GENERAL_NAMES_print - print GeneralNames in a human-friendly, multi-line string

Description

OSSL_GENERAL_NAMES_print() prints a human readable version of the GeneralNames gens to BIO out. Each line
       is indented by indent spaces.

History

       The functions described here were all added in OpenSSL 3.4.

Name

       OSSL_GENERAL_NAMES_print - print GeneralNames in a human-friendly, multi-line string

Return Values

OSSL_GENERAL_NAMES_print() always returns 1.

Synopsis

        #include <openssl/x509v3.h>

        int OSSL_GENERAL_NAMES_print(BIO *out, GENERAL_NAMES *gens, int indent);

See Also