Typedefs |
| typedef int R_CDECL | SSL_CTX_CERT_VERIFY_CB_T (SSLCERT_STORE_CTX *store_ctx, char *arg) |
| | The prototype for a user-defined verification routine. More...
|
| typedef int R_CDECL | SSL_CTX_APP_VERIFY_CB_T (SSL *ssl, SSLCERT **certs, int num, char *arg, long *verify_result) |
| | The prototype for a user-defined verification callback function. More...
|
Functions |
| void R_CDECL | SSL_CTX_set_verify_depth (SSL_CTX *ssl_ctx, int depth) |
| | Sets the verification depth for the SSL_CTX. More...
|
| int R_CDECL | SSL_CTX_get_verify_depth (SSL_CTX *ssl_ctx) |
| | Returns the certificate verification depth and limits the number of certificates in a chain. More...
|
| int R_CDECL | SSL_CTX_get_verify_mode (SSL_CTX *ctx) |
| | Returns the certificate verification mode for the SSL_CTX ctx. More...
|
| void R_CDECL | SSL_CTX_set_verify_mode (SSL_CTX *ctx, int mode) |
| | Sets the mode for the verification of peer certificates. More...
|
| void R_CDECL | SSL_CTX_set_app_verify_cb (SSL_CTX *ctx, SSL_CTX_APP_VERIFY_CB_T *cb, char *arg) |
| | Sets the application verification callback for the SSL_CTX ctx. More...
|
| SSL_CTX_APP_VERIFY_CB_T* R_CDECL | SSL_CTX_get_app_verify_cb (SSL_CTX *ctx) |
| | Returns the application-supplied verification callback associated with the SSL_CTX. More...
|
| char* R_CDECL | SSL_CTX_get_app_verify_cb_arg (SSL_CTX *ctx) |
| | Returns the address of the user-defined application verification callback argument for the SSL_CTX ctx. More...
|
| int | SSL_get_verify_mode (SSL *ssl) |
| | Returns the certificate verification mode by directly accessing the SSL structure. More...
|
| int | SSL_set_verify_mode (SSL *ssl, int mode) |
| | Sets the certificate verification mode value for the SSL structure by directly accessing the SSL structure. More...
|
| int | SSL_get_verify_depth (SSL *ssl) |
| | Returns the verify depth value from the SSL structure by directly accessing this field in the SSL structure. More...
|
| void | SSL_set_verify_depth (SSL *ssl, int depth) |
| | Sets the value of the verify depth in the SSL structure by directly accessing the structure. More...
|
| void | SSL_set_verify_result (SSL *ssl, long verify) |
| | Sets the certificate verification result value for the SSL structure by directly accessing the verify_result field of the SSL structure. More...
|
| long | SSL_get_verify_result (SSL *ssl) |
| | Returns the certificate verification result value from the SSL structure by directly accessing the verify_result field of the SSL structure. More...
|