SSL_connect fails with SSL_ERROR_SSL

2006-01-31 Thread Ambarish Mitra
TCP socket and then connect as shown below. Then, we call SSL_connect, which fails with SSL_ERROR_SSL. At this point, the Java server outputs SSLException No Trusted certificate. sd = socket(AF_INET, SOCK_STREAM, 0); int c = connect(sd, (struct sockaddr*) host_id , sizeof(host_id

Re: SSL_connect fails with SSL_ERROR_SSL

2006-01-31 Thread Samy Thiyagarajan
socket and then connect as shown below. Then, we call SSL_connect, which fails with SSL_ERROR_SSL. At this point, the Java server outputs SSLException No Trusted certificate. If you want client authentication, you need to explicitly state this at the server side(ie., you should ask the client to send

RE: SSL_connect fails with SSL_ERROR_SSL

2006-01-31 Thread Ambarish Mitra
Samy, Thanksfor your reply. On the server side (Java), I have explictly set client authentication to true. ks.load(new FileInputStream(KEYSTORE_FILE), passphrase); kmf.init(ks, passphrase);ctx.init(kmf.getKeyManagers(), null, null);ssf =

Re: SSL_connect fails with SSL_ERROR_SSL

2006-01-31 Thread Kyle Hamilton
Sent: Tuesday, January 31, 2006 4:03 PM To: openssl-users@openssl.org Subject: Re: SSL_connect fails with SSL_ERROR_SSL Dear all, Using openssl (openssl 0.9.7), I have set up a CA and this CA has issued 2 certs - one for client and the other for the server. I have checked

RE: SSL_connect fails with SSL_ERROR_SSL

2006-01-31 Thread Ambarish Mitra
: Tuesday, January 31, 2006 4:32 PM To: openssl-users@openssl.org Subject: Re: SSL_connect fails with SSL_ERROR_SSL Okay. The question is: You have a CA. Did you encode the CA:true attribute in it? You created a server certificate signed by that CA. How? You created a client certificate signed