RE: How to get SSL DLL's compiling from Cygwin?

2005-05-04 Thread Manel Rodero
Yes, but does these files work under Windows? What if I need these files in order to use OpenSSL in Apache? As I can see, Apache only compiles with Visual C++. Do we need to compile OpenSSL with VC too? > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf O

Re: Re:

2005-05-04 Thread Rajeev Aggarwal
could not unzip or save the archive send as attachment,could you send the attachment one more time - Original Message - From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, May 04, 2005 1:38 PM Subject: FwD: Re: > ok ok ok, here is it > > > > *** Attachment-Scanner: Sta

RE: Re:

2005-05-04 Thread David C. Partridge
Probably a good thing - all these zip files have been virus infested and I don't think they are related to this mailing list at all in fact. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Rajeev Aggarwal Sent: 04 May 2005 11:47 To: openssl-users@openssl.

RE: FW: openssl verify conflicts with SSL_connect

2005-05-04 Thread John Hoel
After another round of changes to the certificates I created, I ran s_client and s_server. Here are the scripts: openssl s_client -cert c:/ca/client/client.pem -CApath c:/ca/trusted openssl s_server -cert c:/ca/server/server.pem -CApath c:/ca/trusted -state The files in c:/ca/trusted are root.

Re: FW: openssl verify conflicts with SSL_connect

2005-05-04 Thread Dr. Stephen Henson
On Wed, May 04, 2005, John Hoel wrote: > After another round of changes to the certificates I created, I ran s_client > and s_server. Here are the scripts: > > openssl s_client -cert c:/ca/client/client.pem -CApath c:/ca/trusted > > openssl s_server -cert c:/ca/server/server.pem -CApath c:/ca/t

RE: non blocking SSL connect

2005-05-04 Thread John Hoel
The following works on Windows. Haven't tried any other OS. After the TCP connect completes and you have a connected non-blocking socket,   bio = BIO_new_socket( connected_socket, BIO_NOCLOSE ); /* your application closes the socket */ BIO_set_nbio( bio, 1 ); /* tell OpenSSL that the socket i

RE: FW: openssl verify conflicts with SSL_connect

2005-05-04 Thread John Hoel
Made no difference, same exact errors. Do you know anyone who can work as a consultant at an hourly rate and fix this for me? Nothing I try works. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Dr. Stephen Henson Sent: Wednesday, May 04, 2005 10:15 AM To:

validifying RSA key fingerprint

2005-05-04 Thread Aaron P. Martinez
I am trying to figure out how to veryify a RSA key fingerprint against the hash that i have already in my known_hosts file. When i connect to a machine for the first time after i move it offsite, i get a message like: The authenticity of host 'www.example.com (192.168.x.x)' can't be established.

RE: validifying RSA key fingerprint

2005-05-04 Thread Miles Bradford
User a class A or B IP If you're offsite - your 192.X.X.X probably won't work. -Original Message- From: Aaron P. Martinez [mailto:[EMAIL PROTECTED] Sent: Wednesday, May 04, 2005 12:13 PM To: openssl-users@openssl.org Subject: validifying RSA key fingerprint I am trying to figure out how

RE: validifying RSA key fingerprint

2005-05-04 Thread Aaron P. Martinez
On Wed, 2005-05-04 at 14:18 -0700, Miles Bradford wrote: > User a class A or B IP > If you're offsite - your 192.X.X.X probably won't work. The IP addresses provided were for problem explanation purposes only. if you like, use x.x.x.x. > > -Original Message- > From: Aaron P. Martinez [m

Re: How to get SSL DLL's compiling from Cygwin?

2005-05-04 Thread Tan Eng Ten
I think you could compile apache under cygwin (I've not tried and unsure if there are limitations, you may refer to http://httpd.apache.org/docs/cygwin.html). Alternatively, you could try the Microsoft Visual C++ Toolkit 2003 (http://msdn.microsoft.com/visualc/vctoolkit2003/), which is free. Th