SSL_CTX_set_ssl_version,
SSL_set_ssl_method
SSL_get_ssl_method
choose a new TLS/SSL method
libssl.lib
#include <openssl/ssl.h>
int SSL_CTX_set_ssl_version(SSL_CTX *ctx, SSL_METHOD *method); int SSL_set_ssl_method(SSL *s, SSL_METHOD *method); SSL_METHOD *SSL_get_ssl_method(SSL *ssl);
SSL_CTX_set_ssl_version()
sets a new default TLS/SSL method for SSL objects
newly created from this ctx. SSL objects already created with
SSL_new() are not affected, except when
SSL_clear() is being called.
SSL_set_ssl_method()
sets a new TLS/SSL method for a particular ssl
object. It may be reset, when SSL_clear()
is called.
SSL_get_ssl_method()
returns a function pointer to the TLS/SSL method
set in ssl.
The available method choices are described in SSL_CTX_new().
When SSL_clear() is called and no session is connected to an SSL object, the method of the SSL object is reset to the method currently set in the corresponding SSL_CTX object.
The following return values can occur for
SSL_CTX_set_ssl_version()
and SSL_set_ssl_method()
:
SSL_CTX_new(), SSL_new(), SSL_clear(), ssl(), SSL_set_connect_state()
For additional information or queries on this page send feedback
© 2005-2007 Nokia |