I have an .pxf (AFAIK PKCS#12) certificate. How can I confirm a given password for this certificate using the openssl C API?

link|improve this question

1  
See this answer, noting that if PKCS12_parse returns 1, then the password was correct: stackoverflow.com/questions/3549459/… – indiv Jan 13 '11 at 18:55
1  
Also, try using the pkcs12 utility that comes with OpenSSL (openssl.org/docs/apps/pkcs12.html). If that works, look at <openssl source>/apps/pkcs12.c to see how they do it. – indiv Jan 13 '11 at 18:57
@indiv: Post your second comment as an answer and I will accept it :). – Tilo Prütz Feb 21 '11 at 9:48
All right. I was hoping someone would come along and post a better answer than a link, but these OpenSSL questions just don't get many page views around here. – indiv Feb 21 '11 at 16:52
feedback

1 Answer

up vote 1 down vote accepted

First, try using the pkcs12 utility that comes with OpenSSL to make sure that the file is PKCS#12 and that you can verify the password.

If the utility works, look at its source code ({openssl_src}/apps/pkcs12.c) to see how they do it.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.