代码拉取完成,页面将自动刷新
#!/bin/bash
#########################################################################
# File Name: cert.sh
# Author: nian
# Blog: https://whoisnian.com
# Mail: zhuchangbao1998@gmail.com
# Created Time: 2019年03月01日 星期五 12时33分53秒
#########################################################################
# 生成CA证书
openssl genpkey -algorithm RSA -pkeyopt rsa_keygen_bits:4096 -out ca.key
openssl req -new -x509 -days 1095 -key ca.key -out ca.crt -subj "/C=CN/ST=China/L=China/O=Local CA/OU=Local CA/CN=Local CA"
# 生成服务端私钥和证书请求
openssl genpkey -algorithm RSA -pkeyopt rsa_keygen_bits:4096 -out server.key
openssl req -new -key server.key -out server.req -subj "/C=CN/ST=China/L=China/O=localhost/OU=localhost/CN=localhost"
# 通过CA签发证书
openssl x509 -req -days 1095 -in server.req -CA ca.crt -CAkey ca.key -CAcreateserial -out server.crt -extfile extFile -extensions ext
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。