Categories:
Android (13)
Apple Mac (27)
DH Keys (39)
DSA Keys (69)
EC Keys (572)
Firefox (31)
General (12)
Google Chrome (25)
Intermediate CA (152)
Java VM (33)
JDK Keytool (28)
Microsoft CertUtil (29)
Microsoft Edge (9)
Mozilla CertUtil (22)
OpenSSL (237)
Other (7)
Portecle (38)
Publishers (2697)
Revoked Certificates (30)
Root CA (89)
RSA Keys (2225)
Tools (46)
Tutorial (3)
What Is (22)
Windows (129)
Collections:
Other Resources:
OpenSSL "req" - "prompt=no" Mode
How to use the "prompt=no" mode of the OpenSSL "req -new" command? I want to specify DN field values directly in the configuration file.
✍: FYIcenter.com
You can use "prompt=no" mode of the OpenSSL "req -new" command as shown below,
if you set "prompt=no" and
provide DN (Distinguished Name) field values in the configuration file.
C:\Users\fyicenter>type test.cnf # unnamed section of generic options default_md = md5 # default section for "req" command options [req] input_password = fyicenter prompt = no distinguished_name = my_req_dn_no_prompt [my_req_dn_no_prompt] commonName = FYIcenter.com CA countryName = US stateOrProvinceName = NY localityName = New York organizationName = FYI Center organizationalUnitName = IT emailAddress = ca@fyicenter.com C:\Users\fyicenter>\local\openssl\openssl.exe OpenSSL> req -new -key rsa_test.key -out test.csr -config test.cnf OpenSSL> req -in test.csr -text -noout Certificate Request: Data: Version: 0 (0x0) Subject: CN=FYIcenter.com CA, C=US, ST=NY, L=New York, O=FYI Center, OU=IT /emailAddress=ca@fyicenter.com Subject Public Key Info: Public Key Algorithm: rsaEncryption Public-Key: (1024 bit) ...
As you can see from the output, the "req -new" command executed correctly in the "prompt=no" mode. distinguished_name section options are used as DN filed values.
⇒ OpenSSL "req" - "prompt=yes" Mode
2016-11-02, 5453👍, 0💬
Popular Posts:
Certificate summary - Owner: thawte Primary Root CA, "(c) 2006 thawte, Inc. - For authorized use onl...
Certificate summary - Owner: www.apple.com, Apple Inc., L=Cupertino, ST=CALIFORNIA, US Issuer: Cyber...
Certificate summary - Owner: COMODO SSL CA, COMODO CA Limited, L=Salford, ST=Greater Manchester, GB ...
Certificate Summary: Subject: www.elegantthemes.com Issuer: GeoTrust Extended Validation SSL CA Expi...
How to generate a DER file with a single data field using the OpenSSL "ans1parse" command? You can u...