Re: SSL_ACCEPT...!!! failure

2008-05-30 Thread Dominique Lohez
Vinni a écrit : Hello i am using SSL_CTX_load_verify_locations() to load the CA certs. I have another question that .. How actually the SSL_accept get the client certificate ?? Is its internal function also fetch the CA certificate of the client or it check the CA list of its own that is set

RE: SSL_ACCEPT...!!! failure

2008-05-30 Thread Vinni
Hello i am using SSL_CTX_load_verify_locations() to load the CA certs. I have another question that .. How actually the SSL_accept get the client certificate ?? Is its internal function also fetch the CA certificate of the client or it check the CA list of its own that is set by the above functi

RE: SSL_ACCEPT...!!! failure

2008-05-29 Thread Ambarish Mitra
vinni rathore a écrit : > > hi, > > i am stuck with the error "Unable to get local issuer certificate" and > then "SSL3_GET_CLIENT_CERTIFICATE: peer certificate not return". > > I have created my own certificates using Openssl.exe . I have created > CACert.pem which is self signed CA certificate

Re: SSL_ACCEPT...!!! failure

2008-05-29 Thread Dominique Lohez
Hi vinni, As a hint i will reformulate how i understand your problem The server cannot accept the client certificate because it cannot check that the certificate have been issued by a trusted CA. This arise because the CA certificate is not available so the questios are 1) Is the CA ce

Re: SSL_accept Failure error:FFFFFFFF:lib(255):func(4095):reason(4095)

2008-01-18 Thread Srinivas Gowda
Yes, I have initialized the SSL library, SSL * init_context(char *keyfile, char *password) { . /* Initialize , load libraray and error strings */ /* OpenSSL_add_all_algorithms(); */ SSL_library_init(); SSL_load_error_strings(); .. } Hello, > I am new to OpenSSL.

Re: SSL_accept Failure error:FFFFFFFF:lib(255):func(4095):reason(4095)

2008-01-17 Thread Marek . Marcola
Hello, > I am new to OpenSSL. I am reading documents on SSL and started practising. > As an assignment, I am writing a simple client server program (to support cross > platform, for windows and linux). > In my server code, sockets are created for UDP and TLS for SIP. > My code works for window