Re: How to check one by one the different errors of a certificate

2006-06-09 Thread padma saxena
You can write a callback function to perform specific checks you need and use SSL_CTX_set_verify() to set up the callback mechanism. Hope this helps, Padma --- GUIRY Aroun <[EMAIL PROTECTED]> wrote: > Hi all > > I am doing a https client in C language. And I would > like to know if > there

How to check one by one the different errors of a certificate

2006-06-02 Thread GUIRY Aroun
Hi all I am doing a https client in C language. And I would like to know if there is a function that can only check whether the server certificate signature fails? I use the SSL_get_verify_result() which return the first error encountered. Is it possible to verify only a single error ? T