Lines Matching refs:SSL_CTX
22 int SSL_CTX_use_certificate(SSL_CTX *ctx, X509 *x);
23 int SSL_CTX_use_certificate_ASN1(SSL_CTX *ctx, int len, const unsigned char *d);
24 int SSL_CTX_use_certificate_file(SSL_CTX *ctx, const char *file, int type);
29 int SSL_CTX_use_certificate_chain_file(SSL_CTX *ctx, const char *file);
32 int SSL_CTX_use_PrivateKey(SSL_CTX *ctx, EVP_PKEY *pkey);
33 int SSL_CTX_use_PrivateKey_ASN1(int pk, SSL_CTX *ctx, const unsigned char *d,
35 int SSL_CTX_use_PrivateKey_file(SSL_CTX *ctx, const char *file, int type);
36 int SSL_CTX_use_RSAPrivateKey(SSL_CTX *ctx, RSA *rsa);
37 int SSL_CTX_use_RSAPrivateKey_ASN1(SSL_CTX *ctx, const unsigned char *d, long len);
38 int SSL_CTX_use_RSAPrivateKey_file(SSL_CTX *ctx, const char *file, int type);
46 int SSL_CTX_check_private_key(const SSL_CTX *ctx);
49 …int SSL_CTX_use_cert_and_key(SSL_CTX *ctx, X509 *x, EVP_PKEY *pkey, STACK_OF(X509) *chain, int ove…
54 These functions load the certificates and private keys into the SSL_CTX
58 SSL_CTX object B<ctx>. The information is passed to SSL objects B<ssl>