Symbol: SSL_CONF_CTX
crypto/openssl/apps/include/s_apps.h
76
int config_ctx(SSL_CONF_CTX *cctx, STACK_OF(OPENSSL_STRING) *str, SSL_CTX *ctx);
crypto/openssl/apps/lib/s_cb.c
1344
int config_ctx(SSL_CONF_CTX *cctx, STACK_OF(OPENSSL_STRING) *str,
crypto/openssl/apps/s_client.c
939
SSL_CONF_CTX *cctx = NULL;
crypto/openssl/apps/s_server.c
1114
SSL_CONF_CTX *cctx = NULL;
crypto/openssl/demos/bio/client-arg.c
20
SSL_CONF_CTX *cctx;
crypto/openssl/demos/bio/client-conf.c
21
SSL_CONF_CTX *cctx = NULL;
crypto/openssl/demos/bio/server-arg.c
29
SSL_CONF_CTX *cctx;
crypto/openssl/demos/bio/server-conf.c
31
SSL_CONF_CTX *cctx = NULL;
crypto/openssl/include/openssl/ssl.h
2601
__owur __owur SSL_CONF_CTX *SSL_CONF_CTX_new(void);
crypto/openssl/include/openssl/ssl.h
2602
int SSL_CONF_CTX_finish(SSL_CONF_CTX *cctx);
crypto/openssl/include/openssl/ssl.h
2603
void SSL_CONF_CTX_free(SSL_CONF_CTX *cctx);
crypto/openssl/include/openssl/ssl.h
2604
unsigned int SSL_CONF_CTX_set_flags(SSL_CONF_CTX *cctx, unsigned int flags);
crypto/openssl/include/openssl/ssl.h
2605
__owur unsigned int SSL_CONF_CTX_clear_flags(SSL_CONF_CTX *cctx,
crypto/openssl/include/openssl/ssl.h
2607
__owur int SSL_CONF_CTX_set1_prefix(SSL_CONF_CTX *cctx, const char *pre);
crypto/openssl/include/openssl/ssl.h
2609
void SSL_CONF_CTX_set_ssl(SSL_CONF_CTX *cctx, SSL *ssl);
crypto/openssl/include/openssl/ssl.h
2610
void SSL_CONF_CTX_set_ssl_ctx(SSL_CONF_CTX *cctx, SSL_CTX *ctx);
crypto/openssl/include/openssl/ssl.h
2612
__owur int SSL_CONF_cmd(SSL_CONF_CTX *cctx, const char *cmd, const char *value);
crypto/openssl/include/openssl/ssl.h
2613
__owur int SSL_CONF_cmd_argv(SSL_CONF_CTX *cctx, int *pargc, char ***pargv);
crypto/openssl/include/openssl/ssl.h
2614
__owur int SSL_CONF_cmd_value_type(SSL_CONF_CTX *cctx, const char *cmd);
crypto/openssl/ssl/ssl_conf.c
1008
int SSL_CONF_cmd_argv(SSL_CONF_CTX *cctx, int *pargc, char ***pargv)
crypto/openssl/ssl/ssl_conf.c
1042
int SSL_CONF_cmd_value_type(SSL_CONF_CTX *cctx, const char *cmd)
crypto/openssl/ssl/ssl_conf.c
1053
SSL_CONF_CTX *SSL_CONF_CTX_new(void)
crypto/openssl/ssl/ssl_conf.c
1055
SSL_CONF_CTX *ret = OPENSSL_zalloc(sizeof(*ret));
crypto/openssl/ssl/ssl_conf.c
1060
int SSL_CONF_CTX_finish(SSL_CONF_CTX *cctx)
crypto/openssl/ssl/ssl_conf.c
1099
static void free_cert_filename(SSL_CONF_CTX *cctx)
crypto/openssl/ssl/ssl_conf.c
111
static void ssl_set_option(SSL_CONF_CTX *cctx, unsigned int name_flags,
crypto/openssl/ssl/ssl_conf.c
1110
void SSL_CONF_CTX_free(SSL_CONF_CTX *cctx)
crypto/openssl/ssl/ssl_conf.c
1120
unsigned int SSL_CONF_CTX_set_flags(SSL_CONF_CTX *cctx, unsigned int flags)
crypto/openssl/ssl/ssl_conf.c
1126
unsigned int SSL_CONF_CTX_clear_flags(SSL_CONF_CTX *cctx, unsigned int flags)
crypto/openssl/ssl/ssl_conf.c
1132
int SSL_CONF_CTX_set1_prefix(SSL_CONF_CTX *cctx, const char *pre)
crypto/openssl/ssl/ssl_conf.c
1149
void SSL_CONF_CTX_set_ssl(SSL_CONF_CTX *cctx, SSL *ssl)
crypto/openssl/ssl/ssl_conf.c
1177
void SSL_CONF_CTX_set_ssl_ctx(SSL_CONF_CTX *cctx, SSL_CTX *ctx)
crypto/openssl/ssl/ssl_conf.c
146
static int ssl_match_option(SSL_CONF_CTX *cctx, const ssl_flag_tbl *tbl,
crypto/openssl/ssl/ssl_conf.c
164
SSL_CONF_CTX *cctx = usr;
crypto/openssl/ssl/ssl_conf.c
193
static int cmd_SignatureAlgorithms(SSL_CONF_CTX *cctx, const char *value)
crypto/openssl/ssl/ssl_conf.c
205
static int cmd_ClientSignatureAlgorithms(SSL_CONF_CTX *cctx, const char *value)
crypto/openssl/ssl/ssl_conf.c
216
static int cmd_Groups(SSL_CONF_CTX *cctx, const char *value)
crypto/openssl/ssl/ssl_conf.c
228
static int cmd_Curves(SSL_CONF_CTX *cctx, const char *value)
crypto/openssl/ssl/ssl_conf.c
234
static int cmd_ECDHParameters(SSL_CONF_CTX *cctx, const char *value)
crypto/openssl/ssl/ssl_conf.c
258
static int cmd_CipherString(SSL_CONF_CTX *cctx, const char *value)
crypto/openssl/ssl/ssl_conf.c
269
static int cmd_Ciphersuites(SSL_CONF_CTX *cctx, const char *value)
crypto/openssl/ssl/ssl_conf.c
280
static int cmd_Protocol(SSL_CONF_CTX *cctx, const char *value)
crypto/openssl/ssl/ssl_conf.c
335
static int min_max_proto(SSL_CONF_CTX *cctx, const char *value, int *bound)
crypto/openssl/ssl/ssl_conf.c
358
static int cmd_MinProtocol(SSL_CONF_CTX *cctx, const char *value)
crypto/openssl/ssl/ssl_conf.c
370
static int cmd_MaxProtocol(SSL_CONF_CTX *cctx, const char *value)
crypto/openssl/ssl/ssl_conf.c
375
static int cmd_Options(SSL_CONF_CTX *cctx, const char *value)
crypto/openssl/ssl/ssl_conf.c
417
static int cmd_VerifyMode(SSL_CONF_CTX *cctx, const char *value)
crypto/openssl/ssl/ssl_conf.c
437
static int cmd_Certificate(SSL_CONF_CTX *cctx, const char *value)
crypto/openssl/ssl/ssl_conf.c
473
static int cmd_PrivateKey(SSL_CONF_CTX *cctx, const char *value)
crypto/openssl/ssl/ssl_conf.c
485
static int cmd_ServerInfoFile(SSL_CONF_CTX *cctx, const char *value)
crypto/openssl/ssl/ssl_conf.c
493
static int do_store(SSL_CONF_CTX *cctx,
crypto/openssl/ssl/ssl_conf.c
537
static int cmd_ChainCAPath(SSL_CONF_CTX *cctx, const char *value)
crypto/openssl/ssl/ssl_conf.c
542
static int cmd_ChainCAFile(SSL_CONF_CTX *cctx, const char *value)
crypto/openssl/ssl/ssl_conf.c
547
static int cmd_ChainCAStore(SSL_CONF_CTX *cctx, const char *value)
crypto/openssl/ssl/ssl_conf.c
552
static int cmd_VerifyCAPath(SSL_CONF_CTX *cctx, const char *value)
crypto/openssl/ssl/ssl_conf.c
557
static int cmd_VerifyCAFile(SSL_CONF_CTX *cctx, const char *value)
crypto/openssl/ssl/ssl_conf.c
562
static int cmd_VerifyCAStore(SSL_CONF_CTX *cctx, const char *value)
crypto/openssl/ssl/ssl_conf.c
567
static int cmd_RequestCAFile(SSL_CONF_CTX *cctx, const char *value)
crypto/openssl/ssl/ssl_conf.c
576
static int cmd_ClientCAFile(SSL_CONF_CTX *cctx, const char *value)
crypto/openssl/ssl/ssl_conf.c
581
static int cmd_RequestCAPath(SSL_CONF_CTX *cctx, const char *value)
crypto/openssl/ssl/ssl_conf.c
590
static int cmd_ClientCAPath(SSL_CONF_CTX *cctx, const char *value)
crypto/openssl/ssl/ssl_conf.c
595
static int cmd_RequestCAStore(SSL_CONF_CTX *cctx, const char *value)
crypto/openssl/ssl/ssl_conf.c
604
static int cmd_ClientCAStore(SSL_CONF_CTX *cctx, const char *value)
crypto/openssl/ssl/ssl_conf.c
609
static int cmd_DHParameters(SSL_CONF_CTX *cctx, const char *value)
crypto/openssl/ssl/ssl_conf.c
666
static int cmd_RecordPadding(SSL_CONF_CTX *cctx, const char *value)
crypto/openssl/ssl/ssl_conf.c
722
static int cmd_NumTickets(SSL_CONF_CTX *cctx, const char *value)
crypto/openssl/ssl/ssl_conf.c
737
int (*cmd)(SSL_CONF_CTX *cctx, const char *value);
crypto/openssl/ssl/ssl_conf.c
889
static int ssl_conf_cmd_skip_prefix(SSL_CONF_CTX *cctx, const char **pcmd)
crypto/openssl/ssl/ssl_conf.c
911
static int ssl_conf_cmd_allowed(SSL_CONF_CTX *cctx, const ssl_conf_cmd_tbl *t)
crypto/openssl/ssl/ssl_conf.c
925
static const ssl_conf_cmd_tbl *ssl_conf_cmd_lookup(SSL_CONF_CTX *cctx,
crypto/openssl/ssl/ssl_conf.c
949
static int ctrl_switch_option(SSL_CONF_CTX *cctx, const ssl_conf_cmd_tbl *cmd)
crypto/openssl/ssl/ssl_conf.c
966
int SSL_CONF_cmd(SSL_CONF_CTX *cctx, const char *cmd, const char *value)
crypto/openssl/ssl/ssl_mcnf.c
25
SSL_CONF_CTX *cctx = NULL;
crypto/openssl/test/ssl_old_test.c
936
SSL_CONF_CTX *s_cctx = NULL, *c_cctx = NULL, *s_cctx2 = NULL;
crypto/openssl/test/sslapitest.c
10438
SSL_CONF_CTX *confctx = SSL_CONF_CTX_new();
crypto/openssl/test/sslapitest.c
11390
SSL_CONF_CTX *cctx = NULL;
crypto/openssl/test/sslapitest.c
3822
SSL_CONF_CTX *confctx = SSL_CONF_CTX_new();