|
Verisign usually sends a certificate in PEM format. The Secure FTP Wrapper
3 supports either PEM or DER format.
Note: if you were not given the key/ceritifcate
in PEM format but instead have it in one pkcs12 file, then
first do the following:
Download and install OpenSSL.
Getting an RSA private key in PEM format from a pkcs12 file:
openssl pkcs12 -in <verisign.pfx> -nocerts -nodes -out <priv.pem>
Getting an RSA public key in PEM format from a pkcs12 file:
openssl pkcs12 -in <verisign.pfx> -nokeys -out <pub.pem>
|