Ich möchte OpenSSL so konfigurieren, dass ich beim Ausführen openssl req -new
einer neuen Zertifikatsignierungsanforderung aufgefordert werde, alternative Betreffnamen in die CSR aufzunehmen.
Ich habe diese Zeile zum [req_attributes]
Abschnitt meines hinzugefügt openssl.cnf
:
subjectAltName = Alternative subject names
Dies hat den gewünschten Effekt, dass ich jetzt beim Generieren einer CSR zur Eingabe von SANs aufgefordert werde:
$ openssl req -new -out test.csr -key ./test.key <<<
You are about to be asked to enter information that will be incorporated
into your certificate request.
What you are about to enter is what is called a Distinguished Name or a DN.
There are quite a few fields but you can leave some blank
For some fields there will be a default value,
If you enter '.', the field will be left blank.
-----
Country Name (2 letter code) [US]:
State or Province Name (full name) [New York]:
Locality Name (eg, city) []:
Organization Name (eg, company) [Example Co]:
Organizational Unit Name (eg, section) []:
Common Name (e.g. server FQDN or YOUR name) []:test.example.com
Email Address []:
Please enter the following 'extra' attributes
to be sent with your certificate request
A challenge password []:
An optional company name []:
Alternative subject names []:DNS:alt1.example.com
Im obigen Beispiel habe ich eingegeben, DNS:alt1.example.com
als ich zur Eingabe der SANs aufgefordert wurde.
Das Problem ist, dass die resultierende CSR nicht gut formatiert zu sein scheint:
$ openssl req -text -in ./test.csr
Certificate Request:
Data:
Version: 0 (0x0)
Subject: C=US, ST=New York, O=The Banes, CN=test.thebanes.org
Subject Public Key Info:
Public Key Algorithm: rsaEncryption
Public-Key: (2048 bit)
Modulus:
[...]
Exponent: 65537 (0x10001)
Attributes:
X509v3 Subject Alternative Name:unable to print attribute
OpenSSL beschwert sich, dass der Wert des Attributs "Alternativer Betreffname" nicht gedruckt werden kann. Anhand von Online-Beispielen (bei denen Benutzer die SANs fest in ihre openssl.cnf codieren, anstatt sie wie gewünscht interaktiv aufzufordern) erwarte ich stattdessen Folgendes:
Attributes:
X509v3 Subject Alternative Name:
DNS:alt1.example.com
Wie kann ich also eine wohlgeformte CSR mit interaktiv angeforderten SANs generieren?
openssl
- Sie würden ein Skript benötigen, das die Konfigurationsdatei dafür entstellt. :( PS Eine bewährte Lösung, um dies auf nicht interaktive Weise zu tun, ist hier: stackoverflow.com/a/9158662/2693875