Hi guys! Im trying to add a Wildcard certificate on my dynamics 365 portal.
well I bouth a certificate and received CAs. CRTs and also my custom domain.crt . ( I used https://csrgenerator.com to create my CSR )
So, with all my CRTs files in hand I`m using openssl to export a pfx certificate and import it on powerplataform but got a msg telling me that pw is wrong or " the encryption method used by the certificate is not supported ".
I`m using the command below, it works, asked me a PW but when I import the pfx file above.
openssl pkcs12 -inkey private.key -in certificate.cer -export -out certificate.pfx -3des
I read the requiriments is:
The SSL certificate must meet all the following requirements:
- Signed by a trusted certificate authority.
- Exported as a password-protected PFX file.
- Contains private key at least 2048 bits long.
- Contains all intermediate certificates in the certificate chain.
- Must be SHA2 enabled; SHA1 support is being removed from popular browsers.
- PFX file must be encrypted with TripleDES encryption. Power Apps portals doesn't support AES-256 encryption.
- Contains an Extended Key Usage for server authentication (OID = 1.3.6.1.5.5.7.3.1).
Can anyone help me put this requirements on openssl export command?
Sene