On Mon, Sep 03, 2001 at 01:21:33PM +1000, [EMAIL PROTECTED] wrote:
> hi ... has anyone try to generate their Private Key using this command "openssl
> genrsa -rand /dev/urandom -out domain.key 1024" ???

Yes. In the past we have seen several similar reports.

Solution: do not specify /dev/urandom with -rand. genrsa will try to read
from /dev/urandom until the end of the file is reached. /dev/urandom has
no end, so you are hanging in an infinite loop.
/dev/urandom is automatically queried by OpenSSL, you can omit the -rand
option if you have /dev/urandom.

Best regards,
        Lutz
-- 
Lutz Jaenicke                             [EMAIL PROTECTED]
BTU Cottbus               http://www.aet.TU-Cottbus.DE/personen/jaenicke/
Lehrstuhl Allgemeine Elektrotechnik                  Tel. +49 355 69-4129
Universitaetsplatz 3-4, D-03044 Cottbus              Fax. +49 355 69-4153
______________________________________________________________________
OpenSSL Project                                 http://www.openssl.org
User Support Mailing List                    [EMAIL PROTECTED]
Automated List Manager                           [EMAIL PROTECTED]

Reply via email to