1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

秘密鍵・公開鍵のチェック観点

Last updated at Posted at 2019-06-17

#秘密鍵・公開鍵のチェック観点

#####ハッシュファイル(X.sha256)のハッシュ値と各ファイルのハッシュ値が一致していること

    openssl sha256 XXXXXXXXXXX-client.crt
    openssl sha256 XXXXXXXXXXX-client.key
    openssl sha256 XXXXXXXXXXX-server.crt
    openssl sha256 XXXXXXXXXXX-server.key

#####クライアント証明書・秘密鍵のペア、サーバー証明書・秘密鍵のペアが一致していること

    openssl x509 -noout -modulus -in XXXXXXXXXXX-client.crt | openssl md5
    openssl rsa -noout -modulus -in XXXXXXXXXXX-client.key | openssl md5
    openssl x509 -noout -modulus -in XXXXXXXXXXX-server.crt | openssl md5
    openssl rsa -noout -modulus -in XXXXXXXXXXX-server.key | openssl md5
1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?