Home > Software design >  Generate certificate pfx from file .crt and file .p7b actalis SSL DV
Generate certificate pfx from file .crt and file .p7b actalis SSL DV

Time:09-22

I have following files:

  • 5658747.crt
  • 5658747.p7b

I want to generate file pfx for import ssl in website iis. I tried to generate the private key with openssl ( win ) and with the procedure for importing the certificate into a "personal" local computer, but to no avail.

CodePudding user response:

You don't need to generate pfx file...

Double click on .crt file, then Details|Copy To File to .cer file (X.509).

Open Control Panel|Internet Options|Content, click Certificates|Intermediate Certification Authorities, then click Import and navigate to 5658747.p7b and complete import.

Then in IIS manager, click your main server, open Server Certificates feature. Then click "Complete Certificate Request" under Actions, and import your newly created .cer file.

Finally, bind you new certificate to your website.

CodePudding user response:

For the actalis,the private key and the csr are created from this link:

Actalis Intermediate Certification"

Actalis Intermediate Certification installed with procedure "Import and navigate to 5658747.p7b and complete import"

  • Related