Collections:
Other Resources:
OpenSSL "req" - distinguished_name Configuration Section
What is the distinguished_name section in the OpenSSL configuration file?
✍: FYIcenter.com
The distinguished_name section in the OpenSSL configuration file
is a required section of options when using OpenSSL "req -new" or "req -newkey"
commands to generate a new CSR or self-signed certificate.
distinguished_name sections provides options to control the behavior of the following two groups of DN (Distinguished Name) fields.
1. Standard DN fields:
2. Additional DN fields:
There are 2 modes to use when writing distinguished_name section in the configuration file:
1. "prompt=no" mode - This mode tells OpenSSL to not prompt user for distinguished name fields. It will read distinguished_name section as values for DN fields, instead of field prompting labels.
For example: "countryName=US" tells OpenSSL to use "US" as the countryName value.
2. "prompt=yes" mode - This mode tells OpenSSL to prompt user for distinguished name fields. It will read distinguished_name section as prompting labels for DN fields, instead of field values.
For example: "countryName=Country ISO2 Code" tells OpenSSL to use "Country ISO2 Code []:" to prompt the user to enter the countryName value.
⇒ OpenSSL "req" - "prompt=no" Mode
2016-11-02, ≈31🔥, 0💬
Popular Posts:
Public Key Summary: Key Identifier: B1:3E:C3:69:03:F8:BF:47: 01:D4:98:26:1A:08:02:EF: 63:64:2B:C3Name...
Certificate Summary: Subject: Yandex Mail Service Issuer: YandexExternalCA Expiration: 2014-01-17 15...
What will happen if I use 2 as the public exponent to generate an RSA private key? OpenSSL will run ...
How to view contents of a DSA public key file using OpenSSL "dsa" command? If you want to view conte...
Where can I find an example of DSA (Digital Signature Algorithm) private and public key pair example...