秘密鍵と公開鍵を生成するための OpenSSL 用の次のコマンドがあります。
openssl genrsa –aes-128-cbc –out priv.pem –passout pass:[privateKeyPass] 2048
と
openssl req –x509 –new –key priv.pem –passin pass:[privateKeyPass] -days 3650 –out cert.cer
...しかし、それらは機能していません。最初のコマンドでは、次のエラーが発生します。
usage: genrsa [args] [numbits]
-des encrypt the generated key with DES in cbc mode
-des3 encrypt the generated key with DES in ede cbc mode (168 bit key)
-seed
encrypt PEM output with cbc seed
-aes128, -aes192, -aes256
encrypt PEM output with cbc aes
-camellia128, -camellia192, -camellia256
encrypt PEM output with cbc camellia
-out file output the key to 'file
-passout arg output file pass phrase source
-f4 use F4 (0x10001) for the E value
-3 use 3 for the E value
-engine e use engine e, possibly a hardware device.
-rand file:file:...
load the file (or the files in the directory) into
the random number generator
私は何を間違っていますか?
編集:最初のコマンドを解決しました:
openssl genrsa -aes128 -out privkey.pem 2048
しかし、今では2番目のエラーが発生しています:
unknown option –x509