]> git.ipfire.org Git - thirdparty/openssl.git/blob - doc/man3/X509_STORE_get0_param.pod
Copyright year updates
[thirdparty/openssl.git] / doc / man3 / X509_STORE_get0_param.pod
1 =pod
2
3 =head1 NAME
4
5 X509_STORE_get0_param, X509_STORE_set1_param,
6 X509_STORE_get1_objects, X509_STORE_get0_objects, X509_STORE_get1_all_certs
7 - X509_STORE setter and getter functions
8
9 =head1 SYNOPSIS
10
11 #include <openssl/x509_vfy.h>
12
13 X509_VERIFY_PARAM *X509_STORE_get0_param(const X509_STORE *xs);
14 int X509_STORE_set1_param(X509_STORE *xs, const X509_VERIFY_PARAM *pm);
15 STACK_OF(X509_OBJECT) *X509_STORE_get1_objects(X509_STORE *xs);
16 STACK_OF(X509_OBJECT) *X509_STORE_get0_objects(const X509_STORE *xs);
17 STACK_OF(X509) *X509_STORE_get1_all_certs(X509_STORE *xs);
18
19 =head1 DESCRIPTION
20
21 X509_STORE_set1_param() sets the verification parameters to I<pm> for I<xs>.
22
23 X509_STORE_get0_param() retrieves an internal pointer to the verification
24 parameters for I<xs>. The returned pointer must not be freed by the
25 calling application
26
27 X509_STORE_get1_objects() returns a snapshot of all objects in the store's X509
28 cache. The cache contains B<X509> and B<X509_CRL> objects. The caller is
29 responsible for freeing the returned list.
30
31 X509_STORE_get0_objects() retrieves an internal pointer to the store's
32 X509 object cache. The cache contains B<X509> and B<X509_CRL> objects. The
33 returned pointer must not be freed by the calling application. If the store is
34 shared across multiple threads, it is not safe to use the result of this
35 function. Use X509_STORE_get1_objects() instead, which avoids this problem.
36
37 X509_STORE_get1_all_certs() returns a list of all certificates in the store.
38 The caller is responsible for freeing the returned list.
39
40 =head1 RETURN VALUES
41
42 X509_STORE_get0_param() returns a pointer to an
43 B<X509_VERIFY_PARAM> structure.
44
45 X509_STORE_set1_param() returns 1 for success and 0 for failure.
46
47 X509_STORE_get1_objects() returns a pointer to a stack of the retrieved
48 objects on success, else NULL.
49
50 X509_STORE_get0_objects() returns a pointer to a stack of B<X509_OBJECT>.
51
52 X509_STORE_get1_all_certs() returns a pointer to a stack of the retrieved
53 certificates on success, else NULL.
54
55 =head1 SEE ALSO
56
57 L<X509_STORE_new(3)>
58
59 =head1 HISTORY
60
61 B<X509_STORE_get0_param> and B<X509_STORE_get0_objects> were added in
62 OpenSSL 1.1.0.
63 B<X509_STORE_get1_certs> was added in OpenSSL 3.0.
64 B<X509_STORE_get1_objects> was added in OpenSSL 3.3.
65
66 =head1 COPYRIGHT
67
68 Copyright 2016-2024 The OpenSSL Project Authors. All Rights Reserved.
69
70 Licensed under the Apache License 2.0 (the "License"). You may not use
71 this file except in compliance with the License. You can obtain a copy
72 in the file LICENSE in the source distribution or at
73 L<https://www.openssl.org/source/license.html>.
74
75 =cut