Typedefs |
| typedef int | SSL_CTX_INFO |
| | The type of information identifiers of SSL_CTX structure. More...
|
Functions |
| SSL_CTX* | SSL_CTX_new (SSL_METHOD *meth) |
| | Creates a new context structure using the SSL_METHOD reference and initializes the default values. More...
|
| void | SSL_CTX_free (SSL_CTX *ctx) |
| | Deallocates the memory and frees the state information for the SSL_CTX structure passed in. More...
|
| int | SSL_CTX_set_cipher_list (SSL_CTX *ctx, char *str) |
| | Specifies the cipher suites and order for the SSL_CTX ctx. More...
|
| int | SSL_CTX_set_info (SSL_CTX *ssl_ctx, SSL_CTX_INFO info_id, void *value) |
| | Sets the information into an SSL_CTX structure. More...
|
| int | SSL_CTX_get_info (SSL_CTX *ssl_ctx, SSL_CTX_INFO info_id, void *value) |
| | Retrieves the information from an SSL_CTX structure. More...
|
| int | SSL_CTX_set_R_LIB_CTX (SSL_CTX *ssl_ctx, R_LIB_CTX *lib_ctx, int mode) |
| | Sets the library context against the SSL_CTX structure. More...
|
| long | SSL_CTX_set_rsa_blinding_mode (SSL_CTX *ctx, int mode) |
| | Sets the blinding mode for all the loaded RSA keys. More...
|
| void | SSL_CTX_set_default_passwd_cb (SSL_CTX *ctx, PEM_PASSWORD_CB_T *cb) |
| | Sets the callback used to specify the default password for reading data from Privacy Enhanced Mail (PEM) encoded files that are password protected. More...
|
| int | SSL_CTX_set_ex_data (SSL_CTX *ssl, int idx, char *data) |
| | Allows additional information to be stored against the SSL. More...
|
| char* | SSL_CTX_get_ex_data (SSL_CTX *ssl, int idx) |
| | Retrieves the extra data set against index idx from the SSL_CTX. More...
|
| int | SSL_CTX_get_ex_new_index (long argl, char *argp, SSL_EX_DATA_NEW_CB_T *new_func, SSL_EX_DATA_DUP_CB_T *dup_func, SSL_EX_DATA_FREE_CB_T *free_func) |
| | Returns an index used to manage extra data. More...
|
| long | SSL_CTX_set_options (SSL_CTX *ctx, long op) |
| | Specifies options related to the functioning of the SSL protocol. More...
|
| long | SSL_CTX_get_options (SSL_CTX *ctx) |
| | Returns options related to the functioning of the SSL protocol. More...
|