Lines Matching refs:outfile
8 $outfile = tempnam(sys_get_temp_dir(), "ssl");
9 if ($outfile === false) {
21 var_dump(openssl_pkcs7_sign($infile, $outfile, openssl_x509_read($single_cert), $privkey, $headers)…
22 var_dump(openssl_pkcs7_sign($infile, $outfile, $single_cert, $privkey, $headers));
23 var_dump(openssl_pkcs7_sign($infile, $outfile, $single_cert, $privkey, $assoc_headers));
24 var_dump(openssl_pkcs7_sign($infile, $outfile, $single_cert, $privkey, $empty_headers));
25 var_dump(openssl_pkcs7_sign($wrong, $outfile, $single_cert, $privkey, $headers));
26 var_dump(openssl_pkcs7_sign($empty, $outfile, $single_cert, $privkey, $headers));
28 var_dump(openssl_pkcs7_sign($infile, $outfile, $wrong, $privkey, $headers));
29 var_dump(openssl_pkcs7_sign($infile, $outfile, $empty, $privkey, $headers));
30 var_dump(openssl_pkcs7_sign($infile, $outfile, $single_cert, $wrong, $headers));
32 if (file_exists($outfile)) {
34 unlink($outfile);