| RSA BSAFE Micro Edition Suite |
Streamlined security for mobile and embedded devices |
 
![]() |
Typedefs | |
| typedef int | SSL_CTX_INFO |
| The type of information identifiers of SSL_CTX structure. More... | |
Functions | |
| SSL_CTX* R_CDECL | SSL_CTX_new (SSL_METHOD *meth) |
| Creates a new context structure using the SSL_METHOD reference and initializes the default values. More... | |
| void R_CDECL | SSL_CTX_free (SSL_CTX *ctx) |
| Deallocates the memory and frees the state information for the SSL_CTX structure passed in. More... | |
| int R_CDECL | SSL_CTX_set_cipher_list (SSL_CTX *ctx, char *str) |
| Specifies the cipher suites and order for the SSL_CTX ctx. More... | |
| long | SSL_CTX_set_rsa_blinding_mode (SSL_CTX *ctx, int mode) |
| Sets the blinding mode for all the loaded RSA keys. More... | |
| long R_CDECL | SSL_CTX_set_options (SSL_CTX *ctx, long op) |
| Specifies options related to the functioning of the SSL protocol. More... | |
| long R_CDECL | SSL_CTX_get_options (SSL_CTX *ctx) |
| Returns options related to the functioning of the SSL protocol. More... | |
|
|
The type of information identifiers of SSL_CTX structure. See SSL Context Information Types for more information. |
|
|
Deallocates the memory and frees the state information for the SSL_CTX structure passed in.
|
|
|
Returns options related to the functioning of the SSL protocol. This function is used to enable bug compatibility with other SSL implementations.
|
|
|
Creates a new context structure using the SSL_METHOD reference and initializes the default values. The default values may be overridden for the individual SSL structures set against the SSL_CTX structure. An SSL_CTX is needed to create SSL structures.
|
|
||||||||||||
|
Specifies the cipher suites and order for the SSL_CTX ctx. The list of ciphers is passed in str.
|
|
||||||||||||
|
Specifies options related to the functioning of the SSL protocol. This function is used to enable bug compatibility with other SSL implementations.
|
|
||||||||||||
|
Sets the blinding mode for all the loaded RSA keys. The default mode is on.
|