Searched refs:outfilename (Results 1 – 2 of 2) sorted by relevance
/PHP-7.4/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 20 var_dump(openssl_x509_export_to_file($e, $outfilename)); // read an array, fails 22 var_dump($exists = file_exists($outfilename)); 26 $outfilename = __DIR__ . "/openssl_x509_export_to_file__outfilename.tmp"; 27 if (file_exists($outfilename)) { 28 unlink($outfilename);
|
/PHP-7.4/ext/openssl/ |
H A D | openssl.c | 136 ZEND_ARG_INFO(0, outfilename) 206 ZEND_ARG_INFO(0, outfilename) 248 ZEND_ARG_INFO(0, outfilename) 316 ZEND_ARG_INFO(0, outfilename) 5311 char * outfilename = NULL; in PHP_FUNCTION() local 5331 outfile = BIO_new_file(outfilename, PHP_OPENSSL_BIO_MODE_W(flags)); in PHP_FUNCTION() 5552 char * outfilename; in PHP_FUNCTION() local 5558 &infilename, &infilename_len, &outfilename, &outfilename_len, in PHP_FUNCTION() 5669 char * outfilename; in PHP_FUNCTION() local 5673 &outfilename, &outfilename_len, &recipcert, &recipkey) == FAILURE) { in PHP_FUNCTION() [all …]
|
Completed in 20 milliseconds