Searched refs:p12 (Results 1 – 3 of 3) sorted by relevance
/PHP-7.3/ext/openssl/tests/ |
H A D | openssl_pkcs12_read_basic.phpt | 7 $p12_file = dirname(__FILE__) . "/p12_with_extra_certs.p12"; 8 $p12 = file_get_contents($p12_file); 13 var_dump(openssl_pkcs12_read($p12, $certs, "")); 14 var_dump(openssl_pkcs12_read($p12, $certs, $pass));
|
H A D | bug74022_2.phpt | 17 $p12 = base64_decode($p12_base64); 19 test($p12, 'qwerty');
|
/PHP-7.3/ext/openssl/ |
H A D | openssl.c | 2779 PKCS12 * p12 = NULL; in PHP_FUNCTION() local 2836 if (p12 != NULL) { in PHP_FUNCTION() 2840 i2d_PKCS12_bio(bio_out, p12); in PHP_FUNCTION() 2849 PKCS12_free(p12); in PHP_FUNCTION() 2874 PKCS12 * p12 = NULL; in PHP_FUNCTION() local 2919 if (p12 != NULL) { in PHP_FUNCTION() 2934 PKCS12_free(p12); in PHP_FUNCTION() 2958 PKCS12 * p12 = NULL; in PHP_FUNCTION() local 2979 if (d2i_PKCS12_bio(bio_in, &p12) && PKCS12_parse(p12, pass, &pkey, &cert, &ca)) { in PHP_FUNCTION() 3052 if (p12) { in PHP_FUNCTION() [all …]
|
Completed in 37 milliseconds