Searched refs:openssl_pkcs12_export_to_file (Results 1 – 6 of 6) sorted by relevance
/PHP-8.4/ext/openssl/tests/ |
H A D | openssl_pkcs12_export_to_file_basic.phpt | 2 openssl_pkcs12_export_to_file() tests 22 var_dump(openssl_pkcs12_export_to_file($cert, $pkcsfile, $priv, $pass)); 24 var_dump(openssl_pkcs12_export_to_file($cert_path, $pkcsfile, $priv_path, $pass)); 26 var_dump(openssl_pkcs12_export_to_file($cert_res, $pkcsfile, $priv_res, $pass)); 28 var_dump(openssl_pkcs12_export_to_file($cert_res, $pkcsfile, $priv_res, $pass, array('extracerts' =… 31 var_dump(openssl_pkcs12_export_to_file($invalid, $pkcsfile, $invalid, $pass)); 32 var_dump(openssl_pkcs12_export_to_file($invalid_path, $pkcsfile, $invalid_path, $pass)); 34 var_dump(openssl_pkcs12_export_to_file($priv_res, $pkcsfile, $cert_res, $pass)); 56 Warning: openssl_pkcs12_export_to_file(): X.509 Certificate cannot be retrieved in %s on line %d 59 Warning: openssl_pkcs12_export_to_file(): X.509 Certificate cannot be retrieved in %s on line %d [all …]
|
H A D | openssl_pkcs12_export_to_file_error.phpt | 2 openssl_pkcs12_export_to_file() error tests 18 var_dump(openssl_pkcs12_export_to_file($cert, $pkcsfile, null, $pass)); 19 var_dump(openssl_pkcs12_export_to_file($cert, $pkcsfile, $wrong_priv, $pass)); 20 var_dump(openssl_pkcs12_export_to_file($cert, '.', $priv, $pass)); 30 Warning: openssl_pkcs12_export_to_file(): Cannot get private key from parameter 3 in %s on line %d 33 Warning: openssl_pkcs12_export_to_file(): Private key does not correspond to cert in %s on line %d 36 Warning: openssl_pkcs12_export_to_file(): Error opening file %s in %s on line %d
|
H A D | bug81713.phpt | 122 ["openssl_pkcs12_export_to_file", $crt_file_null, $outfile, $priv_key_file, "pwd"], 123 ["openssl_pkcs12_export_to_file", $crt_file, $outfile_null, $priv_key_file_null, "pwd"], 124 ["openssl_pkcs12_export_to_file", $crt_file, $outfile, $priv_key_file_null, "pwd"], 125 …["openssl_pkcs12_export_to_file", $crt_file, $outfile, $priv_key_file, "pwd", ["extracerts" => [$c… 235 Warning: openssl_pkcs12_export_to_file(): X.509 Certificate cannot be retrieved in %s on line %d 236 openssl_pkcs12_export_to_file(): Argument #1 ($certificate) must not contain any null bytes 237 openssl_pkcs12_export_to_file(): Argument #2 ($output_filename) must not contain any null bytes 238 openssl_pkcs12_export_to_file(): Argument #3 ($private_key) must not contain any null bytes 239 openssl_pkcs12_export_to_file(): Argument #5 ($options) option extracerts array item must not conta…
|
/PHP-8.4/ext/openssl/ |
H A D | openssl.stub.php | 452 function openssl_pkcs12_export_to_file(OpenSSLCertificate|string $certificate, string $output_filen…
|
H A D | openssl_arginfo.h | 414 ZEND_FUNCTION(openssl_pkcs12_export_to_file); 483 ZEND_FE(openssl_pkcs12_export_to_file, arginfo_openssl_pkcs12_export_to_file)
|
H A D | openssl.c | 2600 PHP_FUNCTION(openssl_pkcs12_export_to_file) in PHP_FUNCTION() argument
|
Completed in 33 milliseconds