CA:修订间差异

来自Gea-Suan Lin's Wiki
跳到导航 跳到搜索
此页面具有访问限制。如果您看见此消息,则说明您没有权限访问此页面。
(创建页面,内容为“<syntaxlightlight lang="shell-session"> openssl genrsa -out rootCA.key 4096 openssl req -x509 -new -nodes -key rootCA.key -sha256 -days 3650 -out rootCA.pem </syntax…”)
 
无编辑摘要
第1行: 第1行:
<syntaxlightlight lang="shell-session">
<syntaxhighlight lang="shell-session">
openssl genrsa -out rootCA.key 4096
openssl genrsa -out rootCA.key 4096
openssl req -x509 -new -nodes -key rootCA.key -sha256 -days 3650 -out rootCA.pem
openssl req -x509 -new -nodes -key rootCA.key -sha256 -days 3650 -out rootCA.pem
</syntaxhighlight>
</syntaxhighlight>

2018年8月3日 (五) 16:14的版本

openssl genrsa -out rootCA.key 4096
openssl req -x509 -new -nodes -key rootCA.key -sha256 -days 3650 -out rootCA.pem