如何根据 OpenSSL 配置文件创建 ECDSA 密钥对?
当基于 RSA 密钥对生成 CSR 时,req为了方便,我使用 OpenSSL 命令: openssl req -new -noenc -config 'server.cert.conf' -keyout 'private/server.key.pem' -out 'server.csr.pem' 我喜欢将详细信息放入配置文件中,它看起来像这样: [ req ] prompt = no utf8 = yes default_bits = 2048 default_md = sha256 distinguished_name = req_distinguis...