MySQL 9.1.0
Source Code Documentation
|
Go to the source code of this file.
Namespaces | |
namespace | ssl_wrapper_service |
Functions | |
int | ssl_wrapper_service::dummy_function_to_ensure_we_are_linked_into_the_server () |
void | ssl_wrapper_version (Vio *vio, char *buffer, const size_t buffer_size) |
Return version of SSL used in current connection. More... | |
void | ssl_wrapper_cipher (Vio *vio, char *buffer, const size_t buffer_size) |
Return cipher used in current connection. More... | |
long | ssl_wrapper_cipher_list (Vio *vio, const char **clipher_list, const long maximun_num_of_elements) |
Return cipher list that can be used for SSL. More... | |
long | ssl_wrapper_verify_depth (Vio *vio) |
Return the verification depth limit set in SSL. More... | |
long | ssl_wrapper_verify_mode (Vio *vio) |
Return the verification mode set in SSL. More... | |
void | ssl_wrapper_get_peer_certificate_issuer (Vio *vio, char *issuer, const size_t issuer_size) |
Return issuer name form peers ssl certificate. More... | |
void | ssl_wrapper_get_peer_certificate_subject (Vio *vio, char *subject, const size_t subject_size) |
Return subject field form peers ssl certificate. More... | |
long | ssl_wrapper_get_verify_result_and_cert (Vio *vio) |
Check is peer certificate is present and try to verify it. More... | |
long | ssl_wrapper_ctx_verify_depth (struct st_VioSSLFd *vio_ssl) |
Return the verification depth limit set in SSL context. More... | |
long | ssl_wrapper_ctx_verify_mode (struct st_VioSSLFd *vio_ssl) |
Return the verification mode set in SSL context. More... | |
void | ssl_wrapper_ctx_server_not_after (struct st_VioSSLFd *vio_ssl, char *no_after, const size_t no_after_size) |
Return the last day the server certificate is valid. More... | |
void | ssl_wrapper_ctx_server_not_before (struct st_VioSSLFd *vio_ssl, char *no_before, const size_t no_before_size) |
Return the first day the server certificate is valid. More... | |
void | ssl_wrapper_thread_cleanup () |
Cleanup data allocated by SSL on thread stack. More... | |
long | ssl_wrapper_sess_accept (struct st_VioSSLFd *vio_ssl) |
long | ssl_wrapper_sess_accept_good (struct st_VioSSLFd *vio_ssl) |
Cleanup data allocated by SSL on thread stack. More... | |
void ssl_wrapper_cipher | ( | Vio * | vio, |
char * | buffer, | ||
const size_t | buffer_size | ||
) |
Return cipher used in current connection.
vio | VIO connection descriptor |
buffer | Character buffer in which the cipher name is going to be placed |
buffer_size | Size of the character buffer |
long ssl_wrapper_cipher_list | ( | Vio * | vio, |
const char ** | clipher_list, | ||
const long | maximun_num_of_elements | ||
) |
Return cipher list that can be used for SSL.
vio | VIO connection descriptor |
clipher_list | Pointer to an array of c-strings |
maximun_num_of_elements | Size of the pointer array |
void ssl_wrapper_ctx_server_not_after | ( | struct st_VioSSLFd * | vio_ssl, |
char * | no_after, | ||
const size_t | no_after_size | ||
) |
Return the last day the server certificate is valid.
vio_ssl | VIO SSL context descriptor |
no_after | Character buffer for to be filed with the date in human readable format |
no_after_size | Size of the character buffer |
void ssl_wrapper_ctx_server_not_before | ( | struct st_VioSSLFd * | vio_ssl, |
char * | no_before, | ||
const size_t | no_before_size | ||
) |
Return the first day the server certificate is valid.
vio_ssl | VIO SSL context descriptor |
no_before | Character buffer for to be filed with the date in human readable format |
no_before_size | Size of the character buffer |
long ssl_wrapper_ctx_verify_depth | ( | struct st_VioSSLFd * | vio_ssl | ) |
Return the verification depth limit set in SSL context.
vio_ssl | VIO SSL context descriptor |
long ssl_wrapper_ctx_verify_mode | ( | struct st_VioSSLFd * | vio_ssl | ) |
Return the verification mode set in SSL context.
vio_ssl | VIO SSL context descriptor |
void ssl_wrapper_get_peer_certificate_issuer | ( | Vio * | vio, |
char * | issuer, | ||
const size_t | issuer_size | ||
) |
Return issuer name form peers ssl certificate.
vio | VIO connection descriptor |
issuer | Character buffer in which the issuer name is going to be placed |
issuer_size | Size of character buffer for the issuer name |
void ssl_wrapper_get_peer_certificate_subject | ( | Vio * | vio, |
char * | subject, | ||
const size_t | subject_size | ||
) |
Return subject field form peers ssl certificate.
vio | VIO connection descriptor |
subject | Character buffer in which the subject is going to be placed |
subject_size | Size of character buffer for the subject |
long ssl_wrapper_get_verify_result_and_cert | ( | Vio * | vio | ) |
Check is peer certificate is present and try to verify it.
vio | VIO connection descriptor |
long ssl_wrapper_sess_accept | ( | struct st_VioSSLFd * | vio_ssl | ) |
long ssl_wrapper_sess_accept_good | ( | struct st_VioSSLFd * | vio_ssl | ) |
Cleanup data allocated by SSL on thread stack.
void ssl_wrapper_thread_cleanup | ( | ) |
Cleanup data allocated by SSL on thread stack.
long ssl_wrapper_verify_depth | ( | Vio * | vio | ) |
Return the verification depth limit set in SSL.
vio | VIO connection descriptor |
long ssl_wrapper_verify_mode | ( | Vio * | vio | ) |
Return the verification mode set in SSL.
vio | VIO connection descriptor |
void ssl_wrapper_version | ( | Vio * | vio, |
char * | buffer, | ||
const size_t | buffer_size | ||
) |
Return version of SSL used in current connection.
vio | VIO connection descriptor |
buffer | Character buffer in which the version is going to be placed |
buffer_size | Size of the character buffer |