Retrieve the private and public SSL keys from Traffic manager from following directory:
The following information will help to convert SSL keys from PEM format to PFX that can be imported into Microsoft IIS server:
This can be achieved using OpenSSL. You may have the following files (Filenames are just for reference)
The generated CSR (cert.csr)
The Private Key File (key.pem)
The SSL certificate provided by the CA (cert.cer)
The Intermediate Certificate provided by the CA (CA.cer)
Using OpenSSL run the following command:
openssl pkcs12 -export -in cert.cer -inkey key.pem -out certificate.pfx -certfile CA.cer
This should output a certificate.pfx file.