Page tree

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
openssl genrsa -aes-256-cbcaes256 -out server.key 2048

The command reads,

  • genrsa - generate asymmetric keys
  • aesaes266- 266 - cbc - protect the RSA key pair with a passphrase using CBC AES 256 symmetric key encyrption 
  • 2048 - make the RSA keys 2048 bit

...