#include
void SSL_CTX_set_cert_store(SSL_CTX *ctx, X509_STORE *store); X509_STORE *SSL_CTX_get_cert_store(const SSL_CTX *ctx);
_S_S_L___C_T_X___g_e_t___c_e_r_t___s_t_o_r_e_(_) returns a pointer to the current certificate verification storage.
Typically the trusted certificate store is handled indirectly via using _S_S_L___C_T_X___l_o_a_d___v_e_r_i_f_y___l_o_c_a_t_i_o_n_s(3). Using the _S_S_L___C_T_X___s_e_t___c_e_r_t___s_t_o_r_e_(_) and _S_S_L___C_T_X___g_e_t___c_e_r_t___s_t_o_r_e_(_) functions it is possible to manipulate the X509_STORE object beyond the _S_S_L___C_T_X___l_o_a_d___v_e_r_i_f_y___l_o_c_a_t_i_o_n_s(3) call.
Currently no detailed documentation on how to use the X509_STORE object is available. Not all members of the X509_STORE are used when the verification takes place. So will e.g. the _v_e_r_i_f_y___c_a_l_l_b_a_c_k_(_) be overridden with the _v_e_r_i_f_y___c_a_l_l_b_a_c_k_(_) set via the _S_S_L___C_T_X___s_e_t___v_e_r_i_f_y(3) family of functions. This document must therefore be updated when documentation about the X509_STORE object and its handling becomes available.
_S_S_L___C_T_X___g_e_t___c_e_r_t___s_t_o_r_e_(_) returns the current setting.