1=pod 2 3=head1 NAME 4 5X509_STORE_new, X509_STORE_up_ref, X509_STORE_free, X509_STORE_lock, 6X509_STORE_unlock - X509_STORE allocation, freeing and locking functions 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); 14 int X509_STORE_lock(X509_STORE *v); 15 int X509_STORE_unlock(X509_STORE *v); 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 25X509_STORE_lock() locks the store from modification by other threads, 26X509_STORE_unlock() unlocks it. 27 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 34X509_STORE_up_ref(), X509_STORE_lock() and X509_STORE_unlock() return 351 for success and 0 for failure. 36 37X509_STORE_free() does not return values. 38 39=head1 SEE ALSO 40 41L<X509_STORE_set_verify_cb_func(3)> 42L<X509_STORE_get0_param(3)> 43 44=head1 HISTORY 45 46The X509_STORE_up_ref(), X509_STORE_lock() and X509_STORE_unlock() 47functions were added in OpenSSL 1.1.0. 48 49=head1 COPYRIGHT 50 51Copyright 2016-2019 The OpenSSL Project Authors. All Rights Reserved. 52 53Licensed under the OpenSSL license (the "License"). You may not use 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 59