I have an .pxf (AFAIK PKCS#12) certificate. How can I confirm a given password for this certificate using the openssl C API?
|
feedback
|
|
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 ( | |||
|
feedback
|
<openssl source>/apps/pkcs12.cto see how they do it. – indiv Jan 13 '11 at 18:57