> Is there any alternative API for SSL_CTX_load_verify_locations?
> SSL_CTX_load_verify_location ends up using STDIO calls and i am
> trying to avoid STDIO calls.
>
> I am stuck here and i need yr help to proceed further.
>
> Any help is appreicated.

        Just add them to the verification tree manually. You can use functions 
like
SSL_CTX_add_extra_chain_cert, SSL_CTX_add_client_CA_list, SSL_add_client_CA,
SSL_set_client_CA_list and so on.

        If you have some patience, you can follow the logic in
SSL_CTX_load_verify_locations and call the same lower-level functions it
ultimately calls. I don't at the moment. ;)

        DS


______________________________________________________________________
OpenSSL Project                                 http://www.openssl.org
User Support Mailing List                    openssl-users@openssl.org
Automated List Manager                           [EMAIL PROTECTED]

Reply via email to