Lines Matching refs:SSL_CONF_cmd
6 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
558 SSL_CONF_cmd(ctx, "Protocol", "-SSLv3");
559 SSL_CONF_cmd(ctx, userparam, uservalue);
564 SSL_CONF_cmd(ctx, userparam, uservalue);
565 SSL_CONF_cmd(ctx, "Protocol", "-SSLv3");
570 By checking the return code of SSL_CONF_cmd() it is possible to query if a
571 given B<cmd> is recognised, this is useful if SSL_CONF_cmd() values are
574 For example an application might call SSL_CONF_cmd() and if it returns
578 Applications can also use SSL_CONF_cmd() to process command lines though the
585 number of arguments as they have been processed by SSL_CONF_cmd(). If -2 is
599 SSL_CONF_cmd() returns 1 if the value of B<cmd> is recognised and B<value> is
618 SSL_CONF_cmd(ctx, "SignatureAlgorithms", "ECDSA+SHA256:RSA+SHA256:DSA+SHA256");
625 SSL_CONF_cmd(ctx, "MinProtocol", "TLSv1");
629 SSL_CONF_cmd(ctx, "Protocol", "-SSLv3");
637 SSL_CONF_cmd(ctx, "Protocol", "ALL,-SSLv3");
641 SSL_CONF_cmd(ctx, "MinProtocol", "TLSv1.2");
642 SSL_CONF_cmd(ctx, "MaxProtocol", "TLSv1.2");
646 SSL_CONF_cmd(ctx, "Protocol", "-ALL,TLSv1.2");
650 SSL_CONF_cmd(ctx, "Options", "-SessionTicket");
654 SSL_CONF_cmd(ctx, "Options", "Compression");
658 SSL_CONF_cmd(ctx, "Curves", "P-256:P-384");
671 The SSL_CONF_cmd() function was added in OpenSSL 1.0.2.