How to use openssl_pkcs12_read()
am 26.12.2007 13:21:57 von mmaciaHello, i'm trying to use the function openssl_pkcs12_read() but always
return false and there's no examples in documentation:
$cert = array();
if ( openssl_pkcs12_read('mycert.p12', $cert, 'mypassword') )
{
echo 'success';
}
else
{
echo 'fail';
}
what's wrong?