RE: RAND function using OpenSSL 0.9.7 (A Solution)

2002-07-22 Thread Frederic DONNAT
: Cliff Woolley [mailto:[EMAIL PROTECTED]] Sent: Mon 07/15/2002 10:22 PM To: [EMAIL PROTECTED] Cc: Subject:Re: RAND function using OpenSSL 0.9.7 (A Solution) On Mon, 15 Jul 2002, Geoff Thorpe wrote: I change a function call and it works fine now. I do not know

RAND function using OpenSSL 0.9.7

2002-07-15 Thread Frederic DONNAT
Title: RAND function using OpenSSL 0.9.7 Hi all, I try using OpenSSL0.9.7 with a crypto accelerator and it works fine for asymetric and symetric stuff, but it fails when trying to use ENGINE random (rand engine is not used, everything is done with classic software random). Has someone

Re: RAND function using OpenSSL 0.9.7

2002-07-15 Thread Cliff Woolley
On Mon, 15 Jul 2002, Frederic DONNAT wrote: I try using OpenSSL0.9.7 with a crypto accelerator and it works fine for asymetric and symetric stuff, but it fails when trying to use ENGINE random (rand engine is not used, everything is done with classic software random). Don't you have to

RAND function using OpenSSL 0.9.7 (A Solution)

2002-07-15 Thread Frederic DONNAT
Title: RAND function using OpenSSL 0.9.7 (A Solution) Hi All, I change a function call and it works fine now. I do not know if this is the real way to solve my problem but this provide a solution. In file pkg.modssl/ssl_engine_int.c: move ssl_init_Engine(s, p); function call before

Re: RAND function using OpenSSL 0.9.7 (A Solution)

2002-07-15 Thread Geoff Thorpe
Hi Fred, I was just starting to wonder what might be behind all this when you hit the nail on the head. On Mon, 15 Jul 2002, Frederic DONNAT wrote: I change a function call and it works fine now. I do not know if this is the real way to solve my problem but this provide a solution. In file

Re: RAND function using OpenSSL 0.9.7 (A Solution)

2002-07-15 Thread Cliff Woolley
On Mon, 15 Jul 2002, Geoff Thorpe wrote: I change a function call and it works fine now. I do not know if this is the real way to solve my problem but this provide a solution. In file pkg.modssl/ssl_engine_int.c: move ssl_init_Engine(s, p); function call before ssl_init_SSLLibrary();