Showing posts with label SSL. Show all posts
Showing posts with label SSL. Show all posts
Saturday, 20 October 2012
Remove Passkey from a Private Key
openssl rsa -in private_key_with_pass.key -out private_key_without_pass.key
Saturday, 1 September 2012
Convert Apache SSL Private Key to IIS Private Key
To convert private key being used with Apache (usually .key) to IIS private key (.pfx) use the following command:
openssl pkcs12 -export -out private.pfx -inkey private.key -in public.crt
You'll be asked for the password to unlock current private.key (in case it's password protected) and another password to be assigned to the new private.pfx file.
openssl pkcs12 -export -out private.pfx -inkey private.key -in public.crt
You'll be asked for the password to unlock current private.key (in case it's password protected) and another password to be assigned to the new private.pfx file.
Subscribe to:
Posts (Atom)