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
573 SSL_CONF_cmd(ctx, "Protocol", "-SSLv3");
574 SSL_CONF_cmd(ctx, userparam, uservalue);
579 SSL_CONF_cmd(ctx, userparam, uservalue);
580 SSL_CONF_cmd(ctx, "Protocol", "-SSLv3");
585 By checking the return code of SSL_CONF_cmd() it is possible to query if a
586 given B<cmd> is recognised, this is useful if SSL_CONF_cmd() values are
589 For example an application might call SSL_CONF_cmd() and if it returns
593 Applications can also use SSL_CONF_cmd() to process command lines though the
600 number of arguments as they have been processed by SSL_CONF_cmd(). If -2 is
614 SSL_CONF_cmd() returns 1 if the value of B<cmd> is recognised and B<value> is
633 SSL_CONF_cmd(ctx, "SignatureAlgorithms", "ECDSA+SHA256:RSA+SHA256:DSA+SHA256");
640 SSL_CONF_cmd(ctx, "MinProtocol", "TLSv1");
644 SSL_CONF_cmd(ctx, "Protocol", "-SSLv3");
652 SSL_CONF_cmd(ctx, "Protocol", "ALL,-SSLv3");
656 SSL_CONF_cmd(ctx, "MinProtocol", "TLSv1.2");
657 SSL_CONF_cmd(ctx, "MaxProtocol", "TLSv1.2");
661 SSL_CONF_cmd(ctx, "Protocol", "-ALL,TLSv1.2");
665 SSL_CONF_cmd(ctx, "Options", "-SessionTicket");
669 SSL_CONF_cmd(ctx, "Options", "Compression");
673 SSL_CONF_cmd(ctx, "Curves", "P-256:P-384");
686 The SSL_CONF_cmd() function was added in OpenSSL 1.0.2.