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 (cherry picked from commit d938e8dfee16e6bb5427eac7bda32337634ce130)
This commit is contained in:
parent
1c7de36f62
commit
155a1623d0
@ -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…
x
Reference in New Issue
Block a user