09-18-2012 01:44 AM - edited 03-10-2019 07:33 PM
I have two ISE PSN nodes that I am importing DigiCert ID certificates on.
On one node this worked as it should but on the other I get:
'Private key validation failed: The password is invalid or the private key is improperly protected'
This is a SAN certificate so the CSR is made in OpenSSL from the ISE's .csr and .pvk.
To be sure I didn't messed up the password I generate a new CSR in OpenSSL, and the password is ok.
What is the meaning of 'the private key is improperly protected'?
What could be with the certificate?
I did verify the certificate in OpenSSL with
openssl x509 -in ise01digi.crt -noout -text
Tanks
Mikael
Solved! Go to Solution.
09-18-2012 07:21 AM
Hi,
I ran into the same issue with the private key being improperly protected.
I resolved it by encoding the private key into the DER format instead of PEM.
the command would be similar to:
openssl rsa -in
I encrypted my private key with a password. That is why the passin/passout arguments are put into square brackets.
And to be sure that I don't get an error again I additionally used 3DES encryption on the key.
HTH,
Patrick
09-18-2012 07:21 AM
Hi,
I ran into the same issue with the private key being improperly protected.
I resolved it by encoding the private key into the DER format instead of PEM.
the command would be similar to:
openssl rsa -in
I encrypted my private key with a password. That is why the passin/passout arguments are put into square brackets.
And to be sure that I don't get an error again I additionally used 3DES encryption on the key.
HTH,
Patrick
09-18-2012 10:16 AM
Work like a charm. :-)
I did it without password on the private key.
Thanks!
Mikael
Discover and save your favorite ideas. Come back to expert answers, step-by-step guides, recent topics, and more.
New here? Get started with these tips. How to use Community New member guide