2019-08-10 14:07:22 +02:00
|
|
|
=pod
|
|
|
|
|
|
|
|
=head1 NAME
|
|
|
|
|
|
|
|
ossl_cmp_X509_STORE_add1_certs,
|
|
|
|
ossl_cmp_X509_STORE_get1_certs
|
2020-04-26 18:30:45 +02:00
|
|
|
- functions manipulating stores of certificates
|
2019-08-10 14:07:22 +02:00
|
|
|
|
|
|
|
=head1 SYNOPSIS
|
|
|
|
|
|
|
|
#include <openssl/cmp_util.h>
|
|
|
|
|
|
|
|
int ossl_cmp_X509_STORE_add1_certs(X509_STORE *store, STACK_OF(X509) *certs,
|
2019-12-28 12:33:12 +01:00
|
|
|
int only_self_signed);
|
2019-08-10 14:07:22 +02:00
|
|
|
STACK_OF(X509) *ossl_cmp_X509_STORE_get1_certs(X509_STORE *store);
|
|
|
|
|
|
|
|
=head1 DESCRIPTION
|
|
|
|
|
2019-12-28 12:33:12 +01:00
|
|
|
ossl_cmp_X509_STORE_add1_certs() adds all or only self-signed certificates from
|
2019-09-27 13:26:22 +02:00
|
|
|
the given stack to given store. The I<certs> parameter may be NULL.
|
2019-08-10 14:07:22 +02:00
|
|
|
|
|
|
|
ossl_cmp_X509_STORE_get1_certs() retrieves a copy of all certificates in the
|
|
|
|
given store.
|
|
|
|
|
|
|
|
=head1 RETURN VALUES
|
|
|
|
|
2020-04-26 18:30:45 +02:00
|
|
|
ossl_cmp_X509_STORE_add1_certs() returns 1 on success, 0 on error.
|
2019-08-10 14:07:22 +02:00
|
|
|
|
2020-04-26 18:30:45 +02:00
|
|
|
ossl_cmp_X509_STORE_get1_certs() returns a list of certificates, NULL on error.
|
2019-08-10 14:07:22 +02:00
|
|
|
|
|
|
|
=head1 HISTORY
|
|
|
|
|
|
|
|
The OpenSSL CMP support was added in OpenSSL 3.0.
|
|
|
|
|
|
|
|
=head1 COPYRIGHT
|
|
|
|
|
2020-04-23 13:55:52 +01:00
|
|
|
Copyright 2007-2020 The OpenSSL Project Authors. All Rights Reserved.
|
2019-08-10 14:07:22 +02:00
|
|
|
|
|
|
|
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
|