You are having trouble with this - a few other related posts there, but nothing special. I am trying to quietly generate certificates for a dev machine. These are the commands that I initially ran, but they offered me a passphrase:
openssl genrsa -des3 -out server.key 1024 openssl req -new -key server.key -out server.csr openssl x509 -req -days 1024 -in server.csr -signkey server.key -out server.crt
The first command below works, but the second does not work. I see the passin parameter, but I am having problems since I am still being asked for a passphrase.
openssl genrsa -des3 -passout pass:$passphrase -out server.key 1024 openssl req -passout pass:$passphrase -new -key server.key -out server.csr openssl x509 -req -days 1024 -in server.csr -signkey server.key -out server.crt
ubuntu openssl
user375566 Jan 17 '12 at 20:36 2012-01-17 20:36
source share