Hello, I'm using this tool to generate a csr and a private key, the command
I use is openssl req -new -newkey rsa:3072 -sha256 -out test.com.csr
-keyout test.com.key -subj "/C=/ST=/L=/O=/OU=/CN=
test.com/emailAddress=admin@test.com". I notice there is no prompt for
entering a passphrase and the generated private key is encrypted. I was
wondering if there is a default passphrase in this case? Thank you.
Note that it is possible to enter the password when generating: openssl req -new -newkey rsa:3072 -sha256 -out test.com.csr -keyout test.com.key -subj "/C=/ST=/L=/O=/OU=/CN= test.com/emailAddress=admin@test.com" -passout pass:passphrasehere
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Hello, I'm using this tool to generate a csr and a private key, the command
I use is
openssl req -new -newkey rsa:3072 -sha256 -out test.com.csr -keyout test.com.key -subj "/C=/ST=/L=/O=/OU=/CN= test.com/emailAddress=admin@test.com"
. I notice there is no prompt forentering a passphrase and the generated private key is encrypted. I was
wondering if there is a default passphrase in this case? Thank you.
I tried to reproduce the error, and when I run this same command, the program prompts for the password twice. What version are you running?
Note that it is possible to enter the password when generating:
openssl req -new -newkey rsa:3072 -sha256 -out test.com.csr -keyout test.com.key -subj "/C=/ST=/L=/O=/OU=/CN= test.com/emailAddress=admin@test.com" -passout pass:passphrasehere