摘要: 1.We first need to install OpenSSL in order to create our certificates and keys. Click here for GitHub or here for the exe. 2.Create CA key pair: Navi 阅读全文
posted @ 2023-04-02 14:36 timseng 阅读(92) 评论(0) 推荐(0) 编辑
摘要: 基本生成步骤: 生成CA根证书 生成服务端证书 生成客户端证书(如果需要做双向认证的话) 1.生成根证书 # 生成root私钥 openssl genrsa -out root.key 1024 # 根据私钥创建根证书请求文件,需要输入一些证书的元信息:邮箱、域名等 openssl req -new 阅读全文
posted @ 2023-04-02 14:26 timseng 阅读(341) 评论(0) 推荐(0) 编辑