#include
int SSL_CTX_get_verify_mode(const SSL_CTX *ctx); int SSL_get_verify_mode(const SSL *ssl); int SSL_CTX_get_verify_depth(const SSL_CTX *ctx); int SSL_get_verify_depth(const SSL *ssl); int (*SSL_CTX_get_verify_callback(const SSL_CTX *ctx))(int, X509_STORE_CTX *); int (*SSL_get_verify_callback(const SSL *ssl))(int, X509_STORE_CTX *);
_S_S_L___g_e_t___v_e_r_i_f_y___m_o_d_e_(_) returns the verification mode currently set in ssssll.
_S_S_L___C_T_X___g_e_t___v_e_r_i_f_y___d_e_p_t_h_(_) returns the verification depth limit currently set in ccttxx. If no limit has been explicitly set, -1 is returned and the default value will be used.
_S_S_L___g_e_t___v_e_r_i_f_y___d_e_p_t_h_(_) returns the verification depth limit currently set in ssssll. If no limit has been explicitly set, -1 is returned and the default value will be used.
_S_S_L___C_T_X___g_e_t___v_e_r_i_f_y___c_a_l_l_b_a_c_k_(_) returns a function pointer to the verification callback currently set in ccttxx. If no callback was explicitly set, the NULL pointer is returned and the default callback will be used.
_S_S_L___g_e_t___v_e_r_i_f_y___c_a_l_l_b_a_c_k_(_) returns a function pointer to the verification callback currently set in ssssll. If no callback was explicitly set, the NULL pointer is returned and the default callback will be used.