Lines Matching refs:SSL_CONF_cmd
6 SSL_CONF_cmd - send configuration command
12 int SSL_CONF_cmd(SSL_CONF_CTX *ctx, const char *option, const char *value);
17 The function SSL_CONF_cmd() performs configuration operation B<option> with
255 The following options are accepted by SSL_CONF_cmd(), but are not
683 SSL_CONF_cmd(ctx, "Protocol", "-SSLv3");
684 SSL_CONF_cmd(ctx, userparam, uservalue);
689 SSL_CONF_cmd(ctx, userparam, uservalue);
690 SSL_CONF_cmd(ctx, "Protocol", "-SSLv3");
695 By checking the return code of SSL_CONF_cmd() it is possible to query if a
696 given B<option> is recognised, this is useful if SSL_CONF_cmd() values are
699 For example an application might call SSL_CONF_cmd() and if it returns
703 Applications can also use SSL_CONF_cmd() to process command lines though the
710 number of arguments as they have been processed by SSL_CONF_cmd(). If -2 is
724 SSL_CONF_cmd() returns 1 if the value of B<option> is recognised and B<value> is
743 SSL_CONF_cmd(ctx, "SignatureAlgorithms", "ECDSA+SHA256:RSA+SHA256:DSA+SHA256");
750 SSL_CONF_cmd(ctx, "MinProtocol", "TLSv1");
754 SSL_CONF_cmd(ctx, "Protocol", "-SSLv3");
762 SSL_CONF_cmd(ctx, "Protocol", "ALL,-SSLv3");
766 SSL_CONF_cmd(ctx, "MinProtocol", "TLSv1.2");
767 SSL_CONF_cmd(ctx, "MaxProtocol", "TLSv1.2");
771 SSL_CONF_cmd(ctx, "Protocol", "-ALL,TLSv1.2");
775 SSL_CONF_cmd(ctx, "Options", "-SessionTicket");
779 SSL_CONF_cmd(ctx, "Options", "Compression");
783 SSL_CONF_cmd(ctx, "Curves", "P-256:P-384");
797 The SSL_CONF_cmd() function was added in OpenSSL 1.0.2.