Hi,

> when i run the command line
> /usr/bin/openssl genrsa -rand /dev/urandom -out /etc/httpd/conf/server.key
1024

> the console screen does nothing and when i stop it using CTRL C and chec
> the server.key file under /etc/httpd/conf the file size is 0

Correct me if I'm mistaken but doesn't -rand accept an input file of random
data? /dev/urandom is a constant stream, thus it will never end reading it.
You might want to
cat /dev/urandom > ~/.rand
/usr/bin/openssl genrsa -rand ~/.rand -out /etc/httpd/conf/server.key 1024

Maybe.

______________________________________________________________________
OpenSSL Project                                 http://www.openssl.org
User Support Mailing List                    [EMAIL PROTECTED]
Automated List Manager                           [EMAIL PROTECTED]

Reply via email to