| RSA BSAFE Micro Edition Suite |
Streamlined security for mobile and embedded devices |
 
![]() |
Functions | |
| SSL_METHOD* R_CDECL | SSLv3_server_method (void) |
| Specifies the SSL version 3 protocol for servers only. More... | |
| SSL_METHOD* R_CDECL | SSLv3_client_method (void) |
| Specifies the SSL version 3 protocol for clients only. More... | |
| SSL_METHOD* R_CDECL | SSLv3_method (void) |
| Specifies the SSL version 3 protocol. More... | |
| SSL_METHOD* R_CDECL | TLSv1_method (void) |
| Specifies the Transport Layer Security (TLS) version 1 protocol for both clients and servers. More... | |
| SSL_METHOD* R_CDECL | TLSv1_server_method (void) |
| Specifies the Transport Layer Security (TLS) version 1 protocol for servers only. More... | |
| SSL_METHOD* R_CDECL | TLSv1_client_method (void) |
| Specifies the Transport Layer Security (TLS) version 1 protocol for clients only. More... | |
| int R_CDECL | 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 the SSL_METHOD structure by directly accessing the ssl structure. More... | |
|
|
Returns a reference to the SSL_METHOD structure by directly accessing the ssl structure. SSL_METHOD holds pointers to functions that control the 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 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.
|