Re: Problem generating csr

2008-09-12 Thread Kenneth Goldman
The rpm manager will only update if you install through rpm. 1.5 gb sounds absurd for a csr. Perhaps dump the beginning of it to see if a particular field is incorrect. [EMAIL PROTECTED] wrote on 09/11/2008 02:34:04 PM: > I am running Red Hat Enterprise 5.2 with OpenSSL 0.9.8h. The > version o

Re: Problem generating csr

2008-09-11 Thread Dr. Stephen Henson
On Thu, Sep 11, 2008, Fink, David wrote: > > My problem is when I generate a csr, the csr file is over 1.5 GB. > Needless to say I think my OpenSSL configuration is screwed up. By the > way I am a noobie if you haven't already guessed. > There is a bug in 0.9.8h which affects certificate reque

Re: Problem generating CSR.

2000-09-06 Thread Alan E. Derhaag
Julio Cesar de Melhado e Lima <[EMAIL PROTECTED]> writes: > Hiya, > > I'm using ssl0.9.5a on Solaris 8. > I want to create a RSA private key for my Apache server (will be Triple-DES encrypted > and PEM formatted): > But, when I ran the command : > > ./openssl genrsa -rand -des3 -out server.key

Re: Problem generating CSR.

2000-09-06 Thread Travis Theune
You need to have a source for the -rand flag. My solution was to use egd and create a file of sufficent length full of random data. then the command line was: openssl genrsa -rand -des3 1024 > server.key or openssl genrsa -rand -des3 -out server.key 1024 Hope that helps. Travis Theune * Juli