Re: My ssl client connects without the knowledge of root CA certificate

2007-02-13 Thread Urjit Gokhale
Hello, Could someone help me understand what is happening here? ~ Urjit - Original Message - From: Urjit Gokhale [EMAIL PROTECTED] To: openssl-users@openssl.org Sent: Thursday, January 18, 2007 9:13 PM Subject: Re: My ssl client connects without the knowledge of root CA certificate

Re: My ssl client connects without the knowledge of root CA certificate

2007-02-13 Thread Bernhard Froehlich
it helps. Ted ;) ~ Urjit - Original Message - From: Urjit Gokhale [EMAIL PROTECTED] To: openssl-users@openssl.org Sent: Thursday, January 18, 2007 9:13 PM Subject: Re: My ssl client connects without the knowledge of root CA certificate No. The function call sequence in the client goes

Re: My ssl client connects without the knowledge of root CA certificate

2007-02-13 Thread Marek Marcola
Hello, Could someone help me understand what is happening here? ~ Urjit - Original Message - From: Urjit Gokhale [EMAIL PROTECTED] To: openssl-users@openssl.org Sent: Thursday, January 18, 2007 9:13 PM Subject: Re: My ssl client connects without the knowledge of root CA

My ssl client connects without the knowledge of root CA certificate

2007-01-18 Thread Urjit Gokhale
Hi, I have a sample SSLized client server program. I am not using SSL_CTX_load_verify_locations() in the client and still my client is able to connect to the server. I wonder how this could be possible. How would the client be able to authenticate the server certificate without the knowledge of

Re: My ssl client connects without the knowledge of root CA certificate

2007-01-18 Thread Alexis Lefort
Hi, Do you use: SSL_CTX_set_verify (sslctx, SSL_VERIFY_PEER | SSL_VERIFY_FAIL_IF_NO_PEER_CERT, verify_callback); If not it is probably the solution ;) Alexis Urjit Gokhale a écrit : Hi, I have a sample SSLized client server program. I am not using SSL_CTX_load_verify_locations() in the

Re: My ssl client connects without the knowledge of root CA certificate

2007-01-18 Thread Urjit Gokhale
SSL_connect! Anyway, thanks for the reply, ~ Urjit - Original Message - From: Alexis Lefort [EMAIL PROTECTED] To: openssl-users@openssl.org Sent: Thursday, January 18, 2007 2:43 PM Subject: Re: My ssl client connects without the knowledge of root CA certificate Hi, Do you use