如何使用OpenSSL生成带有SubjectAltName的自签名证书?[关闭]


115

我正在尝试使用带有SubjectAltName的OpenSSL生成自签名证书。虽然我正在为证书生成csr,但我猜想我必须使用OpenSSL x509的v3扩展名。我在用 :

openssl req -new -x509 -v3 -key private.key -out certificate.pem -days 730

有人可以为我提供确切的语法吗?


2
另请参阅如何使用openssl创建自签名证书?它提供了使用主题备用名称创建证书的信息,并告诉您其他适用的规则,以便该证书在浏览器和其他用户代理中获得最大成功的机会。
jww

使用certificatetools.com在该线程底部的答案(stackoverflow.com/questions/27294589/…)将为您提供良好的结果和可用的cnf文件
James Nelson

Answers:


164

有人可以为我提供确切的语法吗?

这是一个三步过程,涉及修改openssl.cnf文件。您可能只能使用命令行选项来做到这一点,但我不是那样做的。

查找您的openssl.cnf文件。它可能位于/usr/lib/ssl/openssl.cnf

$ find /usr/lib -name openssl.cnf
/usr/lib/openssl.cnf
/usr/lib/openssh/openssl.cnf
/usr/lib/ssl/openssl.cnf

在我的Debian系统上,/usr/lib/ssl/openssl.cnf由内置openssl程序使用。在最新的Debian系统上,它位于/etc/ssl/openssl.cnf

您可以openssl.cnf通过XXX在文件中添加乱码来确定正在使用哪个,并查看是否openssl阻塞。


首先,修改req参数。在其中添加您要使用的名称的alternate_names部分openssl.cnf。没有现有的alternate_names部分,因此添加位置无关紧要。

[ alternate_names ]

DNS.1        = example.com
DNS.2        = www.example.com
DNS.3        = mail.example.com
DNS.4        = ftp.example.com

接下来,将以下内容添加到现有 [ v3_ca ]部分。搜索确切的字符串[ v3_ca ]

subjectAltName      = @alternate_names

您可以keyUsage在下进行以下更改[ v3_ca ]

keyUsage = digitalSignature, keyEncipherment

digitalSignature并且keyEncipherment是服务器证书的标准票价。不用担心nonRepudiation。想当律师的计算机科学专家/女孩认为这没用。这在法律界毫无意义。

最后,IETFRFC 5280),浏览器和CA可以快速,轻松地运行,因此您提供何种密钥用法可能并不重要。


其次,修改签名参数。在以下CA_default部分找到此行:

# Extension copying option: use with caution.
# copy_extensions = copy

并将其更改为:

# Extension copying option: use with caution.
copy_extensions = copy

这样可以确保将SAN复制到证书中。复制DNS名称的其他方法已损坏。


第三,生成您的自签名证书:

$ openssl genrsa -out private.key 3072
$ openssl req -new -x509 -key private.key -sha256 -out certificate.pem -days 730
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.
...

最后,检查证书:

$ openssl x509 -in certificate.pem -text -noout
Certificate:
    Data:
        Version: 3 (0x2)
        Serial Number: 9647297427330319047 (0x85e215e5869042c7)
    Signature Algorithm: sha256WithRSAEncryption
        Issuer: C=US, ST=MD, L=Baltimore, O=Test CA, Limited, CN=Test CA/emailAddress=test@example.com
        Validity
            Not Before: Feb  1 05:23:05 2014 GMT
            Not After : Feb  1 05:23:05 2016 GMT
        Subject: C=US, ST=MD, L=Baltimore, O=Test CA, Limited, CN=Test CA/emailAddress=test@example.com
        Subject Public Key Info:
            Public Key Algorithm: rsaEncryption
                Public-Key: (3072 bit)
                Modulus:
                    00:e2:e9:0e:9a:b8:52:d4:91:cf:ed:33:53:8e:35:
                    ...
                    d6:7d:ed:67:44:c3:65:38:5d:6c:94:e5:98:ab:8c:
                    72:1c:45:92:2c:88:a9:be:0b:f9
                Exponent: 65537 (0x10001)
        X509v3 extensions:
            X509v3 Subject Key Identifier:
                34:66:39:7C:EC:8B:70:80:9E:6F:95:89:DB:B5:B9:B8:D8:F8:AF:A4
            X509v3 Authority Key Identifier:
                keyid:34:66:39:7C:EC:8B:70:80:9E:6F:95:89:DB:B5:B9:B8:D8:F8:AF:A4

            X509v3 Basic Constraints: critical
                CA:FALSE
            X509v3 Key Usage:
                Digital Signature, Non Repudiation, Key Encipherment, Certificate Sign
            X509v3 Subject Alternative Name:
                DNS:example.com, DNS:www.example.com, DNS:mail.example.com, DNS:ftp.example.com
    Signature Algorithm: sha256WithRSAEncryption
         3b:28:fc:e3:b5:43:5a:d2:a0:b8:01:9b:fa:26:47:8e:5c:b7:
         ...
         71:21:b9:1f:fa:30:19:8b:be:d2:19:5a:84:6c:81:82:95:ef:
         8b:0a:bd:65:03:d1

7
我只是复制了openssl文件并在本地进行了调整。然后生成以下内容: openssl genrsa -out cert.key 3072 -nodes openssl req -new -x509 -key cert.key -sha256 -config openssl.cnf -out cert.crt -days 730 -subj "/C=US/ST=private/L=province/O=city/CN=hostname.example.com"
stwienert 2014年

7
还有一个很好的技巧,可以使用此处描述的环境变量来使其更加灵活:(subjectAltName=$ENV::ALTNAME并设置env。var ALTNAME=DNS:example.com,DNS:other.example.net)。
布鲁诺

6
请注意,您使用IP的,而不是DNSalternate_names,如果你有一个IP地址的工作。您还可以在本地复制配置文件,然后在openssl命令行上使用进行指定-config my_config.cnf。而且您可能必须取消注释req_extensions = v3_req
Adversus

5
我从来没有在OSX上使用它,但是在此链接上使用req.conf模板就像一个魅力:support.citrix.com/article/CTX135602(我将详细信息提取到答案中,但是这个问题已无济于事了。 )
rymo'5

3
由于某些原因,它不喜欢v3_ca部分下的subjectAltName = @alternate_names。可能是拼写错误吗?这是我得到的错误:错误:22097069:X509 V3例程:DO_EXT_NCONF:无效的扩展字符串:v3_conf.c:139:name = subjectAltName,section = @ alternate_names 140487468840608:错误:22098080:X509 V3例程:X509V3_EXT_nconf:扩展中的错误: v3_conf.c:93:name = subjectAltName,value = @ alternate_names
James Nelson
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.