| RSA BSAFE SSL-C |
Security protocol components for C |
| Search |
Functions | |
| SSL_METHOD* | SSLv2_method (void) |
| Specifies the SSL version 2 protocol. More... | |
| SSL_METHOD* | SSLv2_server_method (void) |
| Specifies the SSL version 2 protocol for servers only. More... | |
| SSL_METHOD* | SSLv2_client_method (void) |
| Specifies the SSL version 2 protocol for clients only. More... | |
| SSL_METHOD* | SSLv3_server_method (void) |
| Specifies the SSL version 3 protocol for servers only. More... | |
| SSL_METHOD* | SSLv3_client_method (void) |
| Specifies the SSL version 3 protocol for clients only. More... | |
| SSL_METHOD* | SSLv3_method (void) |
| Specifies the SSL version 3 protocol. More... | |
| SSL_METHOD* | SSLv23_method (void) |
| Specifies the SSL version 23 protocol. More... | |
| SSL_METHOD* | SSLv23_server_method (void) |
| Sets the SSL method table for an SSLv23 server. More... | |
| SSL_METHOD* | SSLv23_client_method (void) |
| Specifies the SSL version 23 protocol for clients only. More... | |
| SSL_METHOD* | TLSv1_method (void) |
| Specifies the Transport Layer Security (TLS) version 1 protocol for both clients and servers. More... | |
| SSL_METHOD* | TLSv1_server_method (void) |
| Specifies the Transport Layer Security (TLS) version 1 protocol for servers only. More... | |
| SSL_METHOD* | TLSv1_client_method (void) |
| Specifies the Transport Layer Security (TLS) version 1 protocol for clients only. More... | |
| int | SSL_set_ssl_method (SSL *ssl, SSL_METHOD *meth) |
| Sets the SSL method meth to override the default methods that an SSL connection inherits from its SSL_CTX when establishing the SSL connection ssl. More... | |
| SSL_METHOD* | SSL_get_ssl_method (SSL *ssl) |
| Returns a reference to SSL_METHOD. More... | |
|
|
Returns a reference to SSL_METHOD. This structure holds pointers to functions that control operations during an SSL session. The functions are specific to particular SSL versions.
|
|
||||||||||||
|
Sets the SSL method meth to override the default methods that an SSL connection inherits from its SSL_CTX when establishing the SSL connection ssl. This allows the application to support multiple SSL versions without requiring an SSL_CTX for each one.
|
|
|
Specifies the SSL version 23 protocol for clients only. This method is typically passed in a call to SSL_CTX_new() to specify that the SSLv23 protocol will be supported by SSL connections using that SSL_CTX.
|
|
|
Specifies the SSL version 23 protocol. This method is typically passed in a call to SSL_CTX_new() to specify that the SSLv23 protocol will be supported by SSL connections using that SSL_CTX.
|
|
|
Sets the SSL method table for an SSLv23 server.
|
|
|
Specifies the SSL version 2 protocol for clients only. This method is typically passed in a call to SSL_CTX_new() to specify that the SSLv2 protocol will be supported by SSL connections using that SSL_CTX.
|
|
|
Specifies the SSL version 2 protocol. This method is typically passed in a call to SSL_CTX_new() to specify that the SSLv2 protocol will be supported by SSL connections using that SSL_CTX.
|
|
|
Specifies the SSL version 2 protocol for servers only. This method is typically passed in a call to SSL_CTX_new() to specify that the SSLv2 protocol will be supported by SSL connections using that SSL_CTX.
|
|
|
Specifies the SSL version 3 protocol for clients only. This method is typically passed in a call to SSL_CTX_new() to specify that the SSLv3 protocol will be supported by SSL connections using that SSL_CTX.
|
|
|
Specifies the SSL version 3 protocol. This method is typically passed in a call to SSL_CTX_new() to specify that the SSLv3 protocol will be supported by SSL connections using that SSL_CTX.
|
|
|
Specifies the SSL version 3 protocol for servers only. This method is typically passed in a call to SSL_CTX_new() to specify that the SSLv3 protocol will be supported by SSL connections using that SSL_CTX.
|
|
|
Specifies the Transport Layer Security (TLS) version 1 protocol for clients only. This method is typically passed in a call to SSL_CTX_new() to specify that the TLSv1 protocol will be supported by SSL connections using that SSL_CTX.
|
|
|
Specifies the Transport Layer Security (TLS) version 1 protocol for both clients and servers. This method is typically passed in a call to SSL_CTX_new() to specify that the TLSv1 protocol will be supported by SSL connections using that SSL_CTX.
|
|
|
Specifies the Transport Layer Security (TLS) version 1 protocol for servers only. This method is typically passed in a call to SSL_CTX_new() to specify that the TLSv1 protocol will be supported by SSL connections using that SSL_CTX.
|