Lines Matching refs:SSL_CTX
17 int SSL_CTX_set0_chain(SSL_CTX *ctx, STACK_OF(X509) *sk);
18 int SSL_CTX_set1_chain(SSL_CTX *ctx, STACK_OF(X509) *sk);
19 int SSL_CTX_add0_chain_cert(SSL_CTX *ctx, X509 *x509);
20 int SSL_CTX_add1_chain_cert(SSL_CTX *ctx, X509 *x509);
21 int SSL_CTX_get0_chain_certs(SSL_CTX *ctx, STACK_OF(X509) **sk);
22 int SSL_CTX_clear_chain_certs(SSL_CTX *ctx);
31 int SSL_CTX_build_cert_chain(SSL_CTX *ctx, flags);
34 int SSL_CTX_select_current_cert(SSL_CTX *ctx, X509 *x509);
36 int SSL_CTX_set_current_cert(SSL_CTX *ctx, long op);
87 used to iterate over all certificates in an B<SSL_CTX> structure.
105 The chains associate with an SSL_CTX structure are copied to any SSL
107 by any chains subsequently changed in the parent SSL_CTX.