Openssl自签https证书:修订间差异
来自三线的随记
小无编辑摘要 |
小无编辑摘要 |
||
(未显示同一用户的6个中间版本) | |||
第1行: | 第1行: | ||
=== 随记 === | 使用 Openssl自签https证书 | ||
=== SSL is TLS === | |||
SSL is the old name. It is called TLS these days. | |||
<br /> | |||
=== SSL Certificate Verification === | |||
https://curl.se/docs/sslcerts.html | |||
<br /> | |||
===随记=== | |||
openssl genrsa -des3 -out server.key 2048 | openssl genrsa -des3 -out server.key 2048 | ||
openssl req -new -key server.key -out server.csr | openssl req -new -key server.key -out server.csr | ||
第10行: | 第19行: | ||
<br /> | <br /> | ||
=== * 命令作用拆分(doing) === | ===* 命令作用拆分(doing)=== | ||
生成 基于3des 算法长度为2048位的 RSA格式私钥<blockquote>Generation of RSA Private Key. Superceded by genpkey.</blockquote> | 生成 基于3des 算法长度为2048位的 RSA格式私钥<blockquote>Generation of RSA Private Key. Superceded by genpkey.</blockquote> | ||
openssl genrsa -des3 -out server.key 2048 | openssl genrsa -des3 -out server.key 2048 | ||
其中会提示需要为私钥设置密码 | 其中会提示需要为私钥设置密码 | ||
<br /> | <br /> | ||
[[分类:Linux]] | [[分类:Linux]] | ||
[[分类:Http]] | [[分类:Http]] | ||
{{DEFAULTSORT: | {{DEFAULTSORT:openssl自签https证书}} |
2021年4月28日 (三) 10:26的最新版本
使用 Openssl自签https证书
SSL is TLS
SSL is the old name. It is called TLS these days.
SSL Certificate Verification
https://curl.se/docs/sslcerts.html
随记
openssl genrsa -des3 -out server.key 2048 openssl req -new -key server.key -out server.csr openssl rsa -in server.key.org -out server.key openssl x509 -req -days 365 -in server.csr -signkey server.key -out server.crt
其中
openssl rsa -in server.key.org -out server.key
为去除私钥密码
* 命令作用拆分(doing)
生成 基于3des 算法长度为2048位的 RSA格式私钥
Generation of RSA Private Key. Superceded by genpkey.
openssl genrsa -des3 -out server.key 2048
其中会提示需要为私钥设置密码