RE: RE: how to merge multiple public domain certs into one file?

2009-11-16 Thread Hécber Córdova
Yes, you´re right. Apache included server name indication support in the release 2.2.12. Hecber -Original Message- From: owner-openssl-us...@openssl.org [mailto:owner-openssl-us...@openssl.org] On Behalf Of Victor B. Wagner Sent: Monday, November 16, 2009 3:50 PM To:

Getting started - d2i_PKCS12_fp

2009-11-16 Thread Tim Ward
My first attempt at using OpenSSL. (BTW I haven't found anything much in the way of documentation - is there any that I might have missed?) The first thing I'm trying to do is call d2i_PKCS12_fp, so this call is the very first line of OpenSSL I've written. It fails. In particular it

importing RSA key from file

2009-11-16 Thread BT
Hi, I am new in OpenSSL. What I want is to encrypt a message in PC and then decrypt it in Symbian OS (mobile). I have generated the keys in PC. I am having problem to use the public key in Symbian. In Symbian the following APIs available. RInteger n =

Re: Getting started - d2i_PKCS12_fp

2009-11-16 Thread Tim Ward
Further info: I get the same results running the pkread.c sample program. If I compile with /MD without the applink stuff present it works. If I compile with /MDd with the applink stuff present and put a breakpoint on OPENSSL_ApplinkTable it is never called. So it seems like I have failed

Re: how to merge multiple public domain certs into one file?

2009-11-16 Thread Crypto Sal
On 11/16/2009 03:46 AM, Hécber Córdova wrote: Since 0.9.8f OpenSSL supports SNI (server name indication) TLS extension. Support of this extension in mod_ssl is discussed on httpd-...@apache.org for years, and even if it haven't yet got into release, you definitely can find patches in the apache

SSL_accept hanging with blocking socket

2009-11-16 Thread TheSquad
Hello everyone, I have multithreaded the Handshake of SSL by creating a thread after each connection to my server. the handshake is done on a separate thread. So there is two question poping up : 1 - How come if I connect to my server with telnet without SSL support, the socket hang

Re: SSL_accept hanging with blocking socket

2009-11-16 Thread Sebastián Treu
Hi, On Mon, Nov 16, 2009 at 6:19 PM, TheSquad msega...@me.com wrote: Hello everyone, I have multithreaded the Handshake of SSL by creating a thread after each connection to my server. the handshake is done on a separate thread. So there is two question poping up : There's a thread about

Cygwin - OpenSSL 0.9.8l linker errors

2009-11-16 Thread Marc Kührer
Hi, I am trying to add OpenSSL to my project but fail linking OpenSSL to it on Cygwin. I always get the following error messages where zOpenSSL is my test project: /zOpenSSL/main.c:7: undefined reference to `_SSL_library_init' /zOpenSSL/main.c:8: undefined reference to

RE: Cygwin - OpenSSL 0.9.8l linker errors

2009-11-16 Thread Jeremy Farrell
@$(CC) $(LDFLAGS) $(LIBS) $(OBJ) -o $(BIN) needs to be @$(CC) $(LDFLAGS) $(OBJ) $(LIBS) -o $(BIN) -Original Message- From: owner-openssl-us...@openssl.org [mailto:owner-openssl-us...@openssl.org] On Behalf Of Marc Kührer Sent: Tuesday, November 17, 2009 1:32 AM To:

Re: Cygwin - OpenSSL 0.9.8l linker errors

2009-11-16 Thread Reid Thompson
Jeremy Farrell wrote: @$(CC) $(LDFLAGS) $(LIBS) $(OBJ) -o $(BIN) needs to be @$(CC) $(LDFLAGS) $(OBJ) $(LIBS) -o $(BIN) forget to include needed information. The order of the libs may need to be reversed also LIBS = -lssl -lcrypto

Re: Cygwin - OpenSSL 0.9.8l linker errors

2009-11-16 Thread Marc Kührer
Thank you so much! Such a tiny error wasted 20 hours of my time. That probably fixes the problem with gmp and non shared libs as well. Again thank you very much! @Reid I already read about switching the libraries and also tried that. Didn't work but thanks to you too. Regards, Marc -