Home
last modified time | relevance | path

Searched refs:SSL_CONF_cmd (Results 1 – 22 of 22) sorted by relevance

/third_party/openssl/doc/man3/
DSSL_CONF_CTX_set_ssl_ctx.pod18 B<cctx> is cleared. Subsequent calls to SSL_CONF_cmd() will be sent to
23 B<cctx> is cleared. Subsequent calls to SSL_CONF_cmd() will be sent to
40 L<SSL_CONF_cmd(3)>,
DSSL_CONF_cmd.pod6 SSL_CONF_cmd - send configuration command
12 int SSL_CONF_cmd(SSL_CONF_CTX *cctx, const char *cmd, const char *value);
17 The function SSL_CONF_cmd() performs configuration operation B<cmd> with
569 SSL_CONF_cmd(ctx, "Protocol", "-SSLv3");
570 SSL_CONF_cmd(ctx, userparam, uservalue);
575 SSL_CONF_cmd(ctx, userparam, uservalue);
576 SSL_CONF_cmd(ctx, "Protocol", "-SSLv3");
581 By checking the return code of SSL_CONF_cmd() it is possible to query if a
582 given B<cmd> is recognised, this is useful if SSL_CONF_cmd() values are
585 For example an application might call SSL_CONF_cmd() and if it returns
[all …]
DSSL_CONF_CTX_set1_prefix.pod20 Command prefixes alter the commands recognised by subsequent SSL_CONF_cmd()
42 L<SSL_CONF_cmd(3)>,
DSSL_CONF_CTX_set_flags.pod22 The flags set affect how subsequent calls to SSL_CONF_cmd() or
68 L<SSL_CONF_cmd(3)>,
DSSL_CONF_CTX_new.pod34 L<SSL_CONF_cmd(3)>,
DSSL_CONF_cmd_argv.pod36 L<SSL_CONF_cmd(3)>
DSSL_CTX_config.pod75 L<SSL_CONF_cmd(3)>,
DSSL_CTX_set_min_proto_version.pod57 L<SSL_CTX_set_options(3)>, L<SSL_CONF_cmd(3)>
/third_party/openssl/ssl/
Dssl_mcnf.c69 rv = SSL_CONF_cmd(cctx, cmdstr, arg); in ssl_do_config()
Dssl_conf.c799 int SSL_CONF_cmd(SSL_CONF_CTX *cctx, const char *cmd, const char *value) in SSL_CONF_cmd() function
855 rv = SSL_CONF_cmd(cctx, arg, argn); in SSL_CONF_cmd_argv()
/third_party/openssl/demos/bio/
Dserver-conf.c65 rv = SSL_CONF_cmd(cctx, cnf->name, cnf->value); in main()
Dclient-conf.c53 rv = SSL_CONF_cmd(cctx, cnf->name, cnf->value); in main()
/third_party/openssl/test/
Dssltest_old.c1498 rv = SSL_CONF_cmd(c_cctx, arg, argn); in main()
1501 rv = SSL_CONF_cmd(s_cctx2, arg, argn); in main()
1503 rv = SSL_CONF_cmd(s_cctx, arg, argn); in main()
DREADME.ssltest.md117 configurations. For details, see the manpages for `SSL_CONF_cmd`.
Dsslapitest.c2521 if (!TEST_int_eq(SSL_CONF_cmd(confctx, "Options", "-AntiReplay"), in test_early_data_replay_int()
/third_party/openssl/doc/man1/
Ds_server.pod197 in the "Supported Command Line Commands" section of the L<SSL_CONF_cmd(3)>
834 L<SSL_CONF_cmd(3)>, L<sess_id(1)>, L<s_client(1)>, L<ciphers(1)>
Ds_client.pod151 in the "Supported Command Line Commands" section of the L<SSL_CONF_cmd(3)>
820 L<SSL_CONF_cmd(3)>, L<sess_id(1)>, L<s_server(1)>, L<ciphers(1)>,
/third_party/openssl/util/
Dlibssl.num267 SSL_CONF_cmd 268 1_1_0 EXIST::FUNCTION:
/third_party/openssl/apps/
Ds_cb.c1245 if (SSL_CONF_cmd(cctx, flag, arg) <= 0) { in config_ctx()
/third_party/openssl/include/openssl/
Dssl.h2156 __owur int SSL_CONF_cmd(SSL_CONF_CTX *cctx, const char *cmd, const char *value);
/third_party/openssl/crypto/err/
Dopenssl.txt1256 SSL_F_SSL_CONF_CMD:334:SSL_CONF_cmd
/third_party/openssl/
DCHANGES1204 *) Support for SSL_OP_NO_ENCRYPT_THEN_MAC in SSL_CONF_cmd.