Searched refs:outfilename (Results 1 – 2 of 2) sorted by relevance
/PHP-8.3/ext/openssl/tests/ |
H A D | openssl_x509_export_to_file_basic.phpt | 7 $outfilename = __DIR__ . "/openssl_x509_export_to_file__outfilename.tmp"; 16 var_dump(openssl_x509_export_to_file($a, $outfilename)); // read cert as a binary string 17 var_dump(openssl_x509_export_to_file($b, $outfilename)); // read cert from a filename string 18 var_dump(openssl_x509_export_to_file($c, $outfilename)); // read an invalid cert, fails 19 var_dump(openssl_x509_export_to_file($d, $outfilename)); // read cert from a resource 21 openssl_x509_export_to_file($e, $outfilename); // read an array, fails 26 var_dump($exists = file_exists($outfilename)); 30 $outfilename = __DIR__ . "/openssl_x509_export_to_file__outfilename.tmp"; 31 if (file_exists($outfilename)) { 32 unlink($outfilename);
|
/PHP-8.3/ext/openssl/ |
H A D | openssl.c | 5549 char * outfilename = NULL; in PHP_FUNCTION() local 5783 char * outfilename; in PHP_FUNCTION() local 5790 Z_PARAM_PATH(outfilename, outfilename_len) in PHP_FUNCTION() 5898 char * outfilename; in PHP_FUNCTION() local 5903 Z_PARAM_PATH(outfilename, outfilename_len) in PHP_FUNCTION() 6152 char * outfilename = NULL; in PHP_FUNCTION() local 6171 outfilename, outfilename_len, 2, PHP_OPENSSL_BIO_MODE_W(flags)); in PHP_FUNCTION() 6430 char * outfilename; in PHP_FUNCTION() local 6438 Z_PARAM_PATH(outfilename, outfilename_len) in PHP_FUNCTION() 6608 char * outfilename; in PHP_FUNCTION() local [all …]
|
Completed in 22 milliseconds