自己署名証明書の作成
秘密鍵の作成
- 鍵長には、2048bit以上のものを使用することが推奨されているため、2048bitを指定
openssl genrsa -out server.key 2048
CSRの作成
openssl req -new -key server.key -out server.csr
証明書の作成
- 一般的な形式となるX.509で作成するため、コマンドの種類に「x509」を指定
- 証明書の有効期限を日単位で指定、ここでは3650日(約10年)
- 署名アルゴリズムにSHA-256を使用
openssl x509 -days 3650 -sha256 -req -in server.csr -signkey server.key -out server.crt
Author And Source
この問題について(自己署名証明書の作成), 我々は、より多くの情報をここで見つけました https://qiita.com/taku17/items/7d23be9911f1d1271c49著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .