「CA」:修訂間差異
跳至導覽
跳至搜尋
無編輯摘要 |
無編輯摘要 |
||
第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