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
1 changed files with 4 additions and 4 deletions
|
@ -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 a new issue