OpenSSLでプライベートCAを構築する方法
CAの作成
CAのディレクトリを作成
mkdir /etc/pki/myCA
設定ファイルを用意
/etc/pki/tls/openssl.cnfをmyCAにコピー
openssl.cnfの以下を編集
[ CA_default ]
dir = /etc/pki/myCA
[ req ]
default_md = sha256
[ usr_cert ]
basicConstraints=CA:TRUE
nsCertType = client, email
以下のディレクトリとファイルを作成
mkdir certs
mkdir crl
mkdir newcerts
mkdir private
touch index.txt
touch serial
echo "01" > serial
認証局の秘密鍵を作成
openssl req -new -config ./openssl.cnf -x509 -keyout cakey.pem -out cacert.pem -days 3650 -sha256
サーバ証明書の作成
鍵の作成
openssl genrsa -out 出力ファイル
CSRを作成
openssl req -new -sha256 -key 鍵ファイル -out 出力ファイル
サーバ証明書をsha256で署名する
openssl ca -md sha256 -config /etc/pki/myCA/openssl.cnf -cert CAの証明書 -keyfile CAの秘密鍵 -out 出力ファイル -infiles CSRファイル
Author And Source
この問題について(OpenSSLでプライベートCAを構築する方法), 我々は、より多くの情報をここで見つけました https://qiita.com/cupper/items/c7094a6628a3821651c2著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .