Getting aborted in RSA_free()

2007-04-25 Thread Subramaniam
hi My program is exiting abnormally because of RSA_free(rsa); I have checked rsa for NULL... Please help me. -- with regards Subramanaim Engineer Software SCM Microsytems (INDIA) Pvt. Ltd.

RE: Getting aborted in RSA_free()

2007-04-25 Thread David Schwartz
My program is exiting abnormally because of RSA_free(rsa); The two most common explanations are: 1) You are freeing a structure that has already been freed. This could either be because you didn't have a reference to it when you thought you did or because you freed a larger structure that

Re: Which PGP product for fips validation of the download?

2007-04-25 Thread Lee Merrill
Kyle Hamilton wrote: The FIPS version of OpenSSL has an external verification mechanism which does not require a PGP signature verification.  In the Security Policy, there are keyed HMACs ... Thanks for your reply, now this would be I think the second verification, after the

solaris x86 32-bit compile problem

2007-04-25 Thread Andy Harrison
I'm trying to compile with the following options, but it's insisting on using the 64 bit version and I can't seem to get around this. # ./config --install_prefix=/usr/src/OPENSSL --prefix=/usr/local/ssl --openssldir=/usr/local/ssl --shared solaris-x86-gcc Operating system:

RE: solaris x86 32-bit compile problem

2007-04-25 Thread David Schwartz
I'm trying to compile with the following options, but it's insisting on using the 64 bit version and I can't seem to get around this. # ./config --install_prefix=/usr/src/OPENSSL --prefix=/usr/local/ssl --openssldir=/usr/local/ssl --shared solaris-x86-gcc Operating system:

Re: solaris x86 32-bit compile problem

2007-04-25 Thread Laurent Blume
Andy Harrison a écrit : I'm trying to compile with the following options, but it's insisting on using the 64 bit version and I can't seem to get around this. # ./config --install_prefix=/usr/src/OPENSSL --prefix=/usr/local/ssl --openssldir=/usr/local/ssl --shared solaris-x86-gcc Operating

Re: solaris x86 32-bit compile problem

2007-04-25 Thread Neetee Pawa
Hey Andy, I was stuck with the same problem for days. There are two ways you could try. 1) force it into 32 bit. Instead of running ./config .. run it with appropriate argument as ./Configure solaris64-x86_64-gcc prefix =.. You could get the appropriate argument for 32

Re: solaris x86 32-bit compile problem

2007-04-25 Thread Laurent Blume
Neetee Pawa a écrit : However for me .. the binaries did not work once i compiled in 32 bit mode. May be they work for you. Depending on what your issue was, that reminds me that I use the exact following to build: PREFIX=openssl-0.9.8d export LD_OPTIONS=-R/usr/local/${PREFIX}/lib ./Configure

Store Usage

2007-04-25 Thread Amit Hakoo
Hi, Is there any good article or sample on STORE. I want to understand how to build a store and verify a signed certificate against that store using OpenSSL. I have a bunch o CA root certificates and I wanted to add them to a store programmatically. What is the procedure and API's I should

how to list the certificates in store

2007-04-25 Thread Amit Hakoo
Hi, I am retrieving the store from SSL_CTX SSL_CTX_get_cert_store() I add certificates to the store using X509_STORE_add_cert() What APIs are there to facilitate me to list the certificates in the STORE. Thanks --Amit