CA:修订间差异

来自Gea-Suan Lin's Wiki
跳到导航 跳到搜索
此页面具有访问限制。如果您看见此消息,则说明您没有权限访问此页面。
无编辑摘要
无编辑摘要
 
第1行: 第1行:
這邊說明關於CA的事項。
== 建立 ==
<syntaxhighlight 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:15的最新版本

这边说明关于CA的事项。

建立

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

签名