openssl genrsa 2048 > certkey.pem
2. 証明書要求の作成
openssl req -new -key certkey.pem > certreq.pem
configファイルを使用する場合は下記
openssl req -new -config tmp.cfg -key certkey.pem > certreq.pem
3. 同一の秘密鍵で証明書要求に署名する
openssl x509 -req -days 366 -signkey certkey.pem < certreq.pem > cert.crt
configファイルを使用する場合は下記
openssl req -new -extfile tmp.cfg -extentions v3_ca -key certkey.pem > certreq.pem
0 件のコメント:
コメントを投稿