mirror of
https://github.com/openssl/openssl.git
synced 2025-02-17 14:32:04 +08:00
The functions take a SSL *, not a SSL_CTX *
Signed-off-by: Kurt Roeckx <kurt@roeckx.be> Reviewed-by: Rich Salz <rsalz@openssl.org> RT: #4192, MR: #1533
This commit is contained in:
parent
0b081fcd08
commit
d938e8dfee
@ -17,10 +17,10 @@ verification or chain store
|
||||
int SSL_CTX_set0_chain_cert_store(SSL_CTX *ctx, X509_STORE *st);
|
||||
int SSL_CTX_set1_chain_cert_store(SSL_CTX *ctx, X509_STORE *st);
|
||||
|
||||
int SSL_set0_verify_cert_store(SSL_CTX *ctx, X509_STORE *st);
|
||||
int SSL_set1_verify_cert_store(SSL_CTX *ctx, X509_STORE *st);
|
||||
int SSL_set0_chain_cert_store(SSL_CTX *ctx, X509_STORE *st);
|
||||
int SSL_set1_chain_cert_store(SSL_CTX *ctx, X509_STORE *st);
|
||||
int SSL_set0_verify_cert_store(SSL *ctx, X509_STORE *st);
|
||||
int SSL_set1_verify_cert_store(SSL *ctx, X509_STORE *st);
|
||||
int SSL_set0_chain_cert_store(SSL *ctx, X509_STORE *st);
|
||||
int SSL_set1_chain_cert_store(SSL *ctx, X509_STORE *st);
|
||||
|
||||
=head1 DESCRIPTION
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user