Note that you should read about TLS 1.0, TLS 1.1, and TLS 1.2. OpenSSL only supports TLS 1.0 at this point, but SSL v2 and v3 are pretty old. If you want to do current work, you should be using TLS.
TLS 1.0: http://tools.ietf.org/html/rfc2246 TLS 1.1: http://tools.ietf.org/html/rfc4346 TLS 1.2: http://tools.ietf.org/html/rfc5246 --Will > -----Original Message----- > From: [email protected] > [mailto:[email protected]] On Behalf Of Sebastián Treu > Sent: Thursday, September 03, 2009 7:40 AM > To: [email protected] > Subject: Re: openssl C server and java clients > > Sry, i read in the web about it and I found at: > > http://www.openssl.org/docs/ssl/SSL_CTX_new.html > > that for compatible issues one can use: > > SSLv23_method(void), SSLv23_server_method(void), > SSLv23_client_method(void) > > That do it. I managed to use keytool also to export the > certificate created with openssl and put it on a .jks calling > the java app with: > > -Djavax.net.ssl.trustStore=file.jks > > My bad, > Cheers > -- > Sebastián Treu > http://labombiya.com.ar > ______________________________________________________________________ > OpenSSL Project http://www.openssl.org > User Support Mailing List [email protected] > Automated List Manager [email protected] > > ______________________________________________________________________ OpenSSL Project http://www.openssl.org User Support Mailing List [email protected] Automated List Manager [email protected]
