以下の OpenSSL コマンドを実行して、秘密鍵およびパブリック証明書を生成します。プロンプトが出されたら、質問に答えて、共通名を入力します。 openssl req -newkey rsa:2048 -nodes -keyout key.pem -x509 -days 365 -out certificate.pem 以下を実行して、作成した証明書を確認します。 openssl...
sudo openssl req -new -x509 -days30-nodes -newkeyrsa:2048-keyoutprivate.key\ -outpublic.cert-subj '/C=US/ST=Ca/L=Sunnydale/CN=www.example.com' 生成されるprivate.keyファイルには秘密キーが含まれ、public.certファイルには自己署名証明書が含まれます。これらのファイルに共通名と同じ値...
セクションendpoint_req_ext for SANsを使用して、エンドポイントの秘密キーとWLC CSRを作成します。 openssl req -newkey rsa:2048 -keyout ./IntermCA/IntermCA.db.certs/Endpoint/Endpoint.key -nodes -config openssl.cnf -out ./IntermCA/IntermCA.db.certs/...
アプリケーションの秘密鍵および証明書署名要求の作成 openssl req -new -nodes -out example-app1.csr -newkey rsa:4096 -keyout example-app1.key -subj '/CN=example-app1' example-app1.keyというファイルに秘密鍵が作成され、example-app1.csrというファイルに証明書署名要求が作成されます...
> openssl pkcs12 -in my-identity-old.p12 -passin pass:oldpassword -out temp.pem -nodes 中間ファイルを再度 .p12 に書き出す > openssl pkcs12 -export -in temp.pem -out my-identity-new.p12 -passout pass:newpassword パスフレーズの指定について ...