SSL でキーペアの生成方法
2003-02-26-3
- ランダムファイルの生成
% cat file1 file2 file3 > rand.dat
- 秘密鍵の生成
% openssl genrsa -rand rand.dat -des3 1024 > private.key
- CSR(Certificate Signing Request,証明書署名要求) の生成
% openssl req -rand rand.dat -new -key private.key > certificate.csr
- パスフレーズなしの秘密鍵の生成
% openssl rsa -in private.key > non-phrase-private.key