]> git.ipfire.org Git - thirdparty/openssl.git/blame - doc/man3/X509_STORE_new.pod
Following the license change, modify the boilerplates in doc/man3/
[thirdparty/openssl.git] / doc / man3 / X509_STORE_new.pod
CommitLineData
c001ce33
AG
1=pod
2
3=head1 NAME
4
3067095e
RL
5X509_STORE_new, X509_STORE_up_ref, X509_STORE_free, X509_STORE_lock,
6X509_STORE_unlock - X509_STORE allocation, freeing and locking functions
c001ce33
AG
7
8=head1 SYNOPSIS
9
10 #include <openssl/x509_vfy.h>
11
12 X509_STORE *X509_STORE_new(void);
13 void X509_STORE_free(X509_STORE *v);
3067095e
RL
14 int X509_STORE_lock(X509_STORE *v);
15 int X509_STORE_unlock(X509_STORE *v);
c001ce33
AG
16 int X509_STORE_up_ref(X509_STORE *v);
17
18=head1 DESCRIPTION
19
20The X509_STORE_new() function returns a new X509_STORE.
21
22X509_STORE_up_ref() increments the reference count associated with the
23X509_STORE object.
24
3067095e
RL
25X509_STORE_lock() locks the store from modification by other threads,
26X509_STORE_unlock() locks it.
27
c001ce33
AG
28X509_STORE_free() frees up a single X509_STORE object.
29
30=head1 RETURN VALUES
31
32X509_STORE_new() returns a newly created X509_STORE or NULL if the call fails.
33
3067095e
RL
34X509_STORE_up_ref(), X509_STORE_lock() and X509_STORE_unlock() return
351 for success and 0 for failure.
c001ce33
AG
36
37X509_STORE_free() does not return values.
38
39=head1 SEE ALSO
40
41L<X509_STORE_set_verify_cb_func(3)>
f0c58c32
CH
42L<X509_STORE_get0_param(3)>
43
44=head1 HISTORY
45
3067095e
RL
46The X509_STORE_up_ref(), X509_STORE_lock() and X509_STORE_unlock()
47functions were added in OpenSSL 1.1.0
c001ce33 48
e2f92610
RS
49=head1 COPYRIGHT
50
51Copyright 2016 The OpenSSL Project Authors. All Rights Reserved.
52
4746f25a 53Licensed under the Apache License 2.0 (the "License"). You may not use
e2f92610
RS
54this file except in compliance with the License. You can obtain a copy
55in the file LICENSE in the source distribution or at
56L<https://www.openssl.org/source/license.html>.
57
58=cut