If you have a private key that is not encrypted (for example, it was created with the “-nodes” command line option), you can encrypt the private key with a password. A typical openssl command and resulting interactive session is shown here:
> openssl rsa -des3 -in hostkeyNOPASSWORD.pem -out hostkeySECURE.pem writing RSA key Enter PEM pass phrase: Verifying - Enter PEM pass phrase: >
Here's an explanation of the command line options: