Re: openssl errors on aix 4.3 .config and make failing

2009-04-30 Thread Anil Tambe
hi, it seems that the configuration file is missing , please read the below and create one. http://www-01.ibm.com/support/docview.wss?uid=swg21270914 Thanks Anil On Sat, Apr 25, 2009 at 9:35 AM, Richard Francis rfran...@comcast.netwrote: Hi, here's the output from .config and make

Re: add a new cipher to OpenSSL

2009-04-30 Thread Victor B. Wagner
On 2009.04.29 at 05:03:00 -0700, siavash fallahdoost wrote: Hi all, I want to add new cipher algorithms to openssl library and rebuild openssl on Windows(VC++). Really you don't need to rebuild OpenSSL just for adding a cryptoalgorithm. You can implement this algorithm as loadable

Re: Issue with openssl-1.0.0-stable-SNAP-20090429

2009-04-30 Thread The Doctor
On Wed, Apr 29, 2009 at 12:58:31PM +0200, Dr. Stephen Henson wrote: On Wed, Apr 29, 2009, The Doctor wrote: Errors are as follow on BSD/OS 4.3 test SSL protocol ../util/shlib_wrap.sh ./ssltest -test_cipherlist testing SSLv2 cipher list order: ok testing SSLv3 cipher list

Compiling openssl-1.0.0-beta2 on winxp 32bit

2009-04-30 Thread Daniel Williams
Hello, I am getting a compilation error when compiling openssl-1.0.0-beta2 on a windows xp w/SP3 32-bit system. I'm using mingw and activeperl to compile, and I've had no issues compiling any 0.9.8 (or earlier) release in the past, only the newer releases (0.9.9 snapshots, and now 1.0.0

Re: Confused by OpenSSL

2009-04-30 Thread Kyle Hamilton
This is actually an openssl-users question, but don't worry too much about it. :) genrsa generates both the public and the private keys in the same structure (PKCS#1). The command 'openssl rsa -in domainname.key -pubout -out domainname.pub' will take the portion that has been designated as the

BIO_flush with BIO_pairs?

2009-04-30 Thread Nate Leon
Is there any use for BIO_flush when using BIO_pairs? I am using buffers in a BIO_pair to do en/decryption between the network and my app. e.g.: BIO_pair -- The --- WSARecv --- BIO_write --- network

Re: BIO_flush with BIO_pairs?

2009-04-30 Thread Victor Duchovni
On Thu, Apr 30, 2009 at 04:05:49PM -0700, Nate Leon wrote: Is there any use for BIO_flush when using BIO_pairs? No, they don't have anywhere to drain (flush) the data to. BIO_pair -- The ---