Skip to main content
  • Home
  • login
  • Browse the archive

    swh mirror partner logo
swh logo
SoftwareHeritage
Software
Heritage
Mirror
Features
  • Search

  • Downloads

  • Save code now

  • Add forge now

  • Help

  • e72ef10
  • /
  • X509_ACERT_add_attr_nconf.pod
Raw File
Permalinks

To reference or cite the objects present in the Software Heritage archive, permalinks based on SoftWare Hash IDentifiers (SWHIDs) must be used.
Select below a type of object currently browsed in order to display its associated SWHID and permalink.

  • content
  • directory
content badge Iframe embedding
swh:1:cnt:f1d48d4a2b7cb863fb85f0da72cb86651a28b585
directory badge Iframe embedding
swh:1:dir:e72ef10f5660b1676bea7a66f410ad096241641f
X509_ACERT_add_attr_nconf.pod
=pod

=head1 NAME

X509_ACERT_add_attr_nconf
- Add attributes to X509_ACERT from configuration section

=head1 SYNOPSIS

 #include <openssl/x509_acert.h>

 int X509_ACERT_add_attr_nconf(CONF *conf, const char *section,
                               X509_ACERT *acert);

=head1 DESCRIPTION

X509_ACERT_add_attr_nconf() adds one or more B<X509_ATTRIBUTE>s to the
existing B<X509_ACERT> structure I<acert>. The attributes are read
from a I<section> of the I<conf> object.

The give I<section> of the configuration should contain attribute
descriptions of the form:

  attribute_name = value

The format of B<value> will vary depending on the B<attribute_name>.
B<value> can either be a string value or an B<ASN1_TYPE>
object.

To encode an B<ASN1_TYPE> object, use the prefix "ASN1:" followed by
the object description that uses the same syntax as L<ASN1_generate_nconf(3)>.
For example:

 id-aca-group = ASN1:SEQUENCE:ietfattr

 [ietfattr]
 values = SEQUENCE:groups

 [groups]
 1.string = UTF8:mygroup1

=head1 RETURN VALUES

X509_ACERT_add_attr_nconf() returns 1 for success and 0 for failure.

=head1 SEE ALSO

L<ASN1_generate_nconf(3)>.

=head1 HISTORY

The function X509_ACERT_add_attr_nconf() was added in OpenSSL 3.4.

=head1 COPYRIGHT

Copyright 2023-2024 The OpenSSL Project Authors. All Rights Reserved.

Licensed under the Apache License 2.0 (the "License").  You may not use
this file except in compliance with the License.  You can obtain a copy
in the file LICENSE in the source distribution or at
L<https://www.openssl.org/source/license.html>.

=cut

ENEA — Copyright (C), ENEA. License: GNU AGPLv3+.
Legal notes  ::  JavaScript license information ::  Web API

back to top