mirror of https://github.com/openssl/openssl.git
[Docs] 'SSL_CTX_set_cert_store' ownership of 'store'
Reviewed-by: Matt Caswell <matt@openssl.org> Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/24375)
This commit is contained in:
parent
50153ad2bb
commit
987baef4fa
|
|
@ -16,7 +16,9 @@ SSL_CTX_set_cert_store, SSL_CTX_set1_cert_store, SSL_CTX_get_cert_store - manipu
|
|||
|
||||
SSL_CTX_set_cert_store() sets/replaces the certificate verification storage
|
||||
of B<ctx> to/with B<store>. If another X509_STORE object is currently
|
||||
set in B<ctx>, it will be X509_STORE_free()ed.
|
||||
set in B<ctx>, it will be X509_STORE_free()ed. SSL_CTX_set_cert_store() will
|
||||
take ownership of the B<store>, i.e., the call C<X509_STORE_free(store)> is no
|
||||
longer needed.
|
||||
|
||||
SSL_CTX_set1_cert_store() sets/replaces the certificate verification storage
|
||||
of B<ctx> to/with B<store>. The B<store>'s reference count is incremented.
|
||||
|
|
|
|||
Loading…
Reference in New Issue