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
216 The following options are accepted by SSL_CONF_cmd(), but are not
606 SSL_CONF_cmd(ctx, "Protocol", "-SSLv3");
607 SSL_CONF_cmd(ctx, userparam, uservalue);
612 SSL_CONF_cmd(ctx, userparam, uservalue);
613 SSL_CONF_cmd(ctx, "Protocol", "-SSLv3");
618 By checking the return code of SSL_CONF_cmd() it is possible to query if a
619 given B<option> is recognised, this is useful if SSL_CONF_cmd() values are
622 For example an application might call SSL_CONF_cmd() and if it returns
626 Applications can also use SSL_CONF_cmd() to process command lines though the
633 number of arguments as they have been processed by SSL_CONF_cmd(). If -2 is
647 SSL_CONF_cmd() returns 1 if the value of B<option> is recognised and B<value> is
666 SSL_CONF_cmd(ctx, "SignatureAlgorithms", "ECDSA+SHA256:RSA+SHA256:DSA+SHA256");
673 SSL_CONF_cmd(ctx, "MinProtocol", "TLSv1");
677 SSL_CONF_cmd(ctx, "Protocol", "-SSLv3");
685 SSL_CONF_cmd(ctx, "Protocol", "ALL,-SSLv3");
689 SSL_CONF_cmd(ctx, "MinProtocol", "TLSv1.2");
690 SSL_CONF_cmd(ctx, "MaxProtocol", "TLSv1.2");
694 SSL_CONF_cmd(ctx, "Protocol", "-ALL,TLSv1.2");
698 SSL_CONF_cmd(ctx, "Options", "-SessionTicket");
702 SSL_CONF_cmd(ctx, "Options", "Compression");
706 SSL_CONF_cmd(ctx, "Curves", "P-256:P-384");
720 The SSL_CONF_cmd() function was added in OpenSSL 1.0.2.