Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要生成自签名证书以在单用户 Web 服务器上使用 HTTPS。用户能够根据自己的喜好设置证书,这一点很重要。他们需要能够设置通用名称等。
在纯 Python3 环境下,如何生成自签名证书?
要创建自签名证书,您可以使用 openssl,因为它在所有主要操作系统上都可用。
$ openssl req -new -x509 -key privkey.pem -out cert.pem -days 1095
在python中尝试上面的代码,看看它是否有效。