Revision 1 as of 2018-11-12 06:16:03

Clear message
Locked History Actions

ssl-cert

SSL自己発行証明書(暫定)の作成方法

1. opensslを使用してSHA1で署名する場合(期限10年)

openssl genrsa -out test.key 2048
openssl req -new -key test.key -x509 -days 3652 -out test.crt -sha1

内容の確認方法

openssl x509 -text -noout -in test.crt