1=pod 2 3=head1 NAME 4 5OSSL_GENERAL_NAMES_print - print GeneralNames in a human-friendly, multi-line 6string 7 8=head1 SYNOPSIS 9 10 #include <openssl/x509v3.h> 11 12 int OSSL_GENERAL_NAMES_print(BIO *out, GENERAL_NAMES *gens, int indent); 13 14=head1 DESCRIPTION 15 16OSSL_GENERAL_NAMES_print() prints a human readable version of the GeneralNames 17I<gens> to BIO I<out>. Each line is indented by I<indent> spaces. 18 19=head1 RETURN VALUES 20 21OSSL_GENERAL_NAMES_print() always returns 1. 22 23=head1 HISTORY 24 25The functions described here were all added in OpenSSL 3.4. 26 27=head1 COPYRIGHT 28 29Copyright 2024 The OpenSSL Project Authors. All Rights Reserved. 30 31Licensed under the Apache License 2.0 (the "License"). You may not use 32this file except in compliance with the License. You can obtain a copy 33in the file LICENSE in the source distribution or at 34L<https://www.openssl.org/source/license.html>. 35 36=cut 37