mirror of
https://github.com/QuasarApp/openssl.git
synced 2025-05-07 15:09:42 +00:00
in addition: correct wording in doc, comments, and parameter names: self-signed -> self-issued where appropriate Reviewed-by: Matt Caswell <matt@openssl.org> Reviewed-by: Bernd Edlinger <bernd.edlinger@hotmail.de> (Merged from https://github.com/openssl/openssl/pull/10620)
61 lines
2.0 KiB
Plaintext
61 lines
2.0 KiB
Plaintext
=pod
|
|
|
|
=head1 NAME
|
|
|
|
ossl_cmp_sk_X509_add1_cert,
|
|
ossl_cmp_sk_X509_add1_certs,
|
|
ossl_cmp_X509_STORE_add1_certs,
|
|
ossl_cmp_X509_STORE_get1_certs
|
|
- functions manipulating lists of certificates
|
|
|
|
=head1 SYNOPSIS
|
|
|
|
#include <openssl/cmp_util.h>
|
|
|
|
int ossl_cmp_sk_X509_add1_cert(STACK_OF(X509) *sk, X509 *cert,
|
|
int no_dup, int prepend);
|
|
int ossl_cmp_sk_X509_add1_certs(STACK_OF(X509) *sk, STACK_OF(X509) *certs,
|
|
int no_self_issued, int no_dups, int prepend);
|
|
int ossl_cmp_X509_STORE_add1_certs(X509_STORE *store, STACK_OF(X509) *certs,
|
|
int only_self_issued);
|
|
STACK_OF(X509) *ossl_cmp_X509_STORE_get1_certs(X509_STORE *store);
|
|
|
|
=head1 DESCRIPTION
|
|
|
|
ossl_cmp_sk_X509_add1_cert() appends or prepends (depending on the I<prepend>
|
|
argument) a certificate to the given list,
|
|
optionally only if it is not already contained.
|
|
On success the reference count of the certificate is increased.
|
|
|
|
ossl_cmp_sk_X509_add1_certs() appends or prepends (depending on the I<prepend>
|
|
argument) a list of certificates to the given list,
|
|
optionally only if not self-issued and optionally only if not already contained.
|
|
The reference counts of those certificates appended successfully are increased.
|
|
|
|
ossl_cmp_X509_STORE_add1_certs() adds all or only self-issued certificates from
|
|
the given stack to given store. The I<certs> parameter may be NULL.
|
|
|
|
ossl_cmp_X509_STORE_get1_certs() retrieves a copy of all certificates in the
|
|
given store.
|
|
|
|
=head1 RETURN VALUES
|
|
|
|
ossl_cmp_X509_STORE_get1_certs() returns a list of certificates, NULL on error.
|
|
|
|
All other functions return 1 on success, 0 on error.
|
|
|
|
=head1 HISTORY
|
|
|
|
The OpenSSL CMP support was added in OpenSSL 3.0.
|
|
|
|
=head1 COPYRIGHT
|
|
|
|
Copyright 2007-2019 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
|