Password incorrect importing certificate on 2012 server

Viewed 41

When i try to import certificate on server 2012 it say password incorrect.

I have check this post: "The password you entered is incorrect" when importing .pfx files to Windows certificate store

And i exported: openssl.exe pkcs12 -in 'C:\cert.p12' -out C:\key.pem And created the new cert: openssl.exe pkcs12 -keypbe PBE-SHA1-3DES -certpbe PBE-SHA1-3DES -export -in 'C:\key.pem' -out 'C:\newcert.pfx' -name "newcert"

But when i try to import in server 2012 keep saying password incorrect.

2 Answers

The top answer in that post adds -nomac, which you didn't. Instead of turning off the MAC entirely, you could also try -macalg sha1.

--Something witty here questioning the use of a 10 year old OS (that only has 13 months of security updates remaining)--

For those who need it, i finally got it. Before execute the command from the other post, you have to export .key and .crt from your .p12 or .pfx certificate.

Related