3

次のコマンドを試して、証明書を取得し、テキスト ファイルとして保存しました。

openssl s_client -connect www.domain.com:443 -showcerts > file.txt

次に、以下を使用して公開鍵を取得しました。

openssl x509 -noout -modulus -in file.txt

取得した公開鍵は、証明書 no.1 に関連付けられたものです。チェーン全体の公開鍵を取得するにはどうすればよいですか? そして、私がやっていることを改善するために使用できるより良い方法はありますか (つまり、証明書チェーン全体の公開鍵を、私が行っている 2 つの手順ではなく 1 つの手順で取得する方法がある場合)。

4

1 に答える 1

0

The "Trouble understanding SSL certificate chain verification" question touches on the idea of acquiring the certificate chain. It's probably worth looking over.

I haven't solved this type of problem myself, though. :)

于 2012-11-27T22:51:29.493 に答える