I was provided a wild card certificate chain, from my Certificate Authority, with an encrypted Private Key along with the passphrase. I want to decrypt the Private Key to make it usable.
Using openssl follow these commands:
- Navigate in command prompt to openssl
- Type: openssl rsa -in <path to encryped.key> -out <path to decrypted.key>
- Enter passphrase when prompted
- Decrypted Private Key will be in specified directory
Now you are able to use the Private Key, with the rest of the Certificate Chain, to create the PEM file to use in your application or device.