1. Generate a SSL Key File
openssl genrsa -out key_name.key 2048
** Please note that both these examples will not add a password to the key file. To do that you will need to add -des3 to the command.
2. Create a Certificate Signing Request (CSR)
openssl req -out CSR.csr -key key_name.key -new -sha256
3. Check your CSR
https://cryptoreport.websecurity.symantec.com/checker/views/csrCheck.jsp
本文介绍如何使用OpenSSL生成SSL密钥文件及证书签名请求(CSR)。首先通过命令生成不带密码的2048位RSA密钥文件,然后创建CSR,并提供检查CSR有效性的在线工具链接。

被折叠的 条评论
为什么被折叠?



