Skip to content

Instantly share code, notes, and snippets.

View wixb50's full-sized avatar
🎯
Focusing

wixb50 wixb50

🎯
Focusing
View GitHub Profile
@wixb50
wixb50 / make_cert.md
Last active July 21, 2022 00:48 — forked from liuguangw/make_cert.md
使用openssl制作自定义CA、自签名ssl证书

自签名ssl证书生成

生成CA私钥

# 创建文件夹 ca 保存Ca相关
mkdir ca
cd ca
#创建私钥 (建议设置密码)
openssl genrsa -des3 -out myCA.key 2048