OpenSSLによるCA証明書・CA秘密鍵の作成

CA秘密鍵を作成

 openssl genrsa -rand /var/log/messages -out ca.key 2048

CA証明書の署名要求を作成

 openssl req -new -days 3650 -key ca.key -out ca.csr 

CA証明書を自己署名して発行

 openssl x509 -days 3650 -in ca.csr -out ca.crt -req -signkey ca.key 

CA証明書を確認

 openssl x509 -in ca.crt -text

CA証明書をPEMフォーマットからDERフォーマットへ変換

Windows IEなどにインストールするCA証明書はDERフォーマットである必要がある。

 openssl x509 -in ca.crt -outform DER -out cacert.der

CA証明書をWindowsPCへインストール

手順

  • DER形式のCA証明書ファイルをWindowsPCへコピーする。
  • CA証明書ファイル(拡張子.der)をダブルクリックする。
  • 証明書をすべて次のストアに配置するを選択し、証明書のストアは信頼されたルート証明機関を選択する。

参考

http://www.jcsinc.co.jp/support/vista7_root.html


トップ   新規 一覧 検索 最終更新   ヘルプ   最終更新のRSS