[openssl.org #2003] patch for /lib64 /usr/lib64

2009-08-06 Thread Justin P. Mattock via RT
hello, Im trying to build a pure64 bit LFS system(home project), and am a bit confused on where to find patches to have openssl install/configure itself in the right location. Right now the libraries are going into /lib /usr/lib which is fine, but for an x86_64 I need them to go into /lib64

server authentication

2009-08-06 Thread bschooly
Hello, I have a legacy app that I converted to use ssl encryption. I have everything working, except server authentication. I'm trying to test the host name in the server's cert post handshake. Using: void check_cert(SSL *ssl, char *host) { X509 *peer; char peer_CN[256];

server authentication

2009-08-06 Thread Bill Schoolfield
Hello, I have a legacy app that I converted to use ssl encryption. I have everything working, except server authentication. I'm trying to test the host name in the server's cert post handshake. Using: void check_cert(SSL *ssl, char *host) { X509 *peer; char peer_CN[256];

Re: server authentication

2009-08-06 Thread Peter Sylvester
Hi; - verifying a self signed cert is strange. How would you trust it. the standard way is to have your own CA, and then issuev a cert for your server, and then use the CA cert as trust anchor in your client. Anyway your code for is false for at least three reasons: - The get by nid return

Re: server authentication

2009-08-06 Thread Goetz Babin-Ebell
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Bill Schoolfield wrote: | Hello, Hello Bill, | I have a legacy app that I converted to use ssl encryption. I have | everything working, except server authentication. | | I'm trying to test the host name in the server's cert post | handshake. Using:

mingw 64bit

2009-08-06 Thread Peter Quiring
Hi all, I'm not sure if anyone else has done this before but I'm trying to get openssl to compile using mingw 64bit. I do a normal configure for mingw 32bit: ./configure zlib no-asm no-shared threads mingw And then change the Makefile to support mingw 64bit: sed -i 's/-march=i486//g' Makefile

Re: [openssl.org #2003] AutoReply: patch for /lib64 /usr/lib64

2009-08-06 Thread Justin P. Mattock via RT
The default queue via RT wrote: Greetings, This message has been automatically generated in response to the creation of a trouble ticket regarding: patch for /lib64 /usr/lib64, a summary of which appears below. There is no need to reply to this message right now. Your ticket has

Re: mingw 64bit

2009-08-06 Thread Roumen Petrov
Peter Quiring wrote: Hi all, I'm not sure if anyone else has done this before but I'm trying to get openssl to compile using mingw 64bit. I do a normal configure for mingw 32bit: ./configure zlib no-asm no-shared threads mingw Hmm ... grep -i mingw Configure: # MinGW mingw, gcc:-mno-cygwin

OpenSSL 0.9.8l

2009-08-06 Thread Alex Lam
Hi all, Just wondering if there is any plan to release OpenSSL 0.9.8l ? If so, do we know when? I'd like to stay with the 0.9.8 branch, but I do see some fixes double committed from the 1.0.0 branch. Thanks, Alex.

Re: mingw 64bit

2009-08-06 Thread Peter Quiring
Hmm...I seemed to have missed that. And it works perfectly. Thanks ;) On Thu, Aug 6, 2009 at 2:12 PM, Roumen Petrov open...@roumenpetrov.infowrote: Peter Quiring wrote: Hi all, I'm not sure if anyone else has done this before but I'm trying to get openssl to compile using mingw 64bit.