Home
last modified time | relevance | path

Searched refs:outfile (Results 1 – 11 of 11) sorted by relevance

/PHP-5.5/ext/openssl/tests/
H A D023.phpt8 $outfile = tempnam("/tmp", "ssl");
9 if ($outfile === false)
24 var_dump(openssl_pkcs7_encrypt($infile, $outfile, $single_cert, $headers));
28 var_dump(openssl_pkcs7_encrypt($infile, $outfile, $single_cert, $wrong));
29 var_dump(openssl_pkcs7_encrypt($wrong, $outfile, $single_cert, $headers));
30 var_dump(openssl_pkcs7_encrypt($empty, $outfile, $single_cert, $headers));
32 var_dump(openssl_pkcs7_encrypt($infile, $outfile, $wrong, $headers));
33 var_dump(openssl_pkcs7_encrypt($infile, $outfile, $empty, $headers));
34 var_dump(openssl_pkcs7_encrypt($infile, $outfile, $single_cert, $empty));
37 if (file_exists($outfile)) {
[all …]
H A D024.phpt12 $outfile = tempnam("/tmp", "ssl");
13 if ($outfile === false) {
14 unlink($outfile);
25 var_dump(openssl_pkcs7_decrypt($encrypted, $outfile, $single_cert, $wrong));
26 var_dump(openssl_pkcs7_decrypt($encrypted, $outfile, $wrong, $privkey));
27 var_dump(openssl_pkcs7_decrypt($encrypted, $outfile, null, $privkey));
28 var_dump(openssl_pkcs7_decrypt($wrong, $outfile, $single_cert, $privkey));
29 var_dump(openssl_pkcs7_decrypt($empty, $outfile, $single_cert, $privkey));
31 var_dump(openssl_pkcs7_decrypt($encrypted, $outfile, $empty, $privkey));
38 if (file_exists($outfile)) {
[all …]
H A D025.phpt8 $outfile = tempnam("/tmp", "ssl");
9 if ($outfile === false)
20 var_dump(openssl_pkcs7_sign($infile, $outfile, $single_cert, $privkey, $headers));
23 var_dump(openssl_pkcs7_sign($infile, $outfile, $single_cert, $privkey, $wrong));
24 var_dump(openssl_pkcs7_sign($wrong, $outfile, $single_cert, $privkey, $headers));
25 var_dump(openssl_pkcs7_sign($empty, $outfile, $single_cert, $privkey, $headers));
27 var_dump(openssl_pkcs7_sign($infile, $outfile, $wrong, $privkey, $headers));
28 var_dump(openssl_pkcs7_sign($infile, $outfile, $empty, $privkey, $headers));
29 var_dump(openssl_pkcs7_sign($infile, $outfile, $single_cert, $privkey, $empty));
32 if (file_exists($outfile)) {
[all …]
/PHP-5.5/ext/gd/libgd/
H A Dgd_jpeg.c162 void jpeg_gdIOCtx_dest (j_compress_ptr cinfo, gdIOCtx * outfile);
164 void gdImageJpegCtx (gdImagePtr im, gdIOCtx * outfile, int quality) in gdImageJpegCtx() argument
207 jpeg_gdIOCtx_dest (&cinfo, outfile); in gdImageJpegCtx()
739 gdIOCtx *outfile; /* target stream */ member
791 if (gdPutBuf (dest->buffer, OUTPUT_BUF_SIZE, dest->outfile) != (size_t) OUTPUT_BUF_SIZE) { in empty_output_buffer()
817 if (datacount > 0 && ((size_t)gdPutBuf (dest->buffer, datacount, dest->outfile) != datacount)) { in term_destination()
829 void jpeg_gdIOCtx_dest (j_compress_ptr cinfo, gdIOCtx * outfile) in jpeg_gdIOCtx_dest() argument
847 dest->outfile = outfile; in jpeg_gdIOCtx_dest()
H A Dgd_webp.c166 void gdImageWebpCtx (gdImagePtr im, gdIOCtx * outfile, int quantization) in gdImageWebpCtx() argument
208 gdPutBuf (filedata, yuv_nbytes, outfile); in gdImageWebpCtx()
H A Dgd_png.c455 void gdImagePngCtx (gdImagePtr im, gdIOCtx * outfile) in gdImagePngCtx() argument
457 gdImagePngCtxEx(im, outfile, -1, -1); in gdImagePngCtx()
464 void gdImagePngCtxEx (gdImagePtr im, gdIOCtx * outfile, int level, int basefilter) in gdImagePngCtxEx() argument
508 png_set_write_fn(png_ptr, (void *) outfile, gdPngWriteData, gdPngFlushData); in gdImagePngCtxEx()
H A Dgd_gif_out.c93 static void compress (int init_bits, gdIOCtx *outfile, gdImagePtr im, GifCtx *ctx);
492 compress(int init_bits, gdIOCtxPtr outfile, gdImagePtr im, GifCtx *ctx) argument
507 ctx->g_outfile = outfile;
H A Dgd.h612 void gdImageWebpCtx (gdImagePtr im, gdIOCtx * outfile, int quantization);
/PHP-5.5/win32/build/
H A Dconfutils.js1505 var infile, outfile;
1527 outfile.Write(indata);
1528 outfile.Close();
1758 var outfile = null;
1815 if (outfile) {
1816 outfile.Close();
1817 outfile = null;
1826 outfile.Close();
1831 var infile, outfile;
1846 outfile.Write(indata);
[all …]
/PHP-5.5/ext/openssl/
H A DREADME141 bool openssl_pkcs7_encrypt(string infile, string outfile, array recipcerts,
146 named outfile.
158 bool openssl_pkcs7_sign(string infile, string outfile, mixed signcert, mixed
164 The result is placed in the file named by outfile.
H A Dopenssl.c275 ZEND_ARG_INFO(0, outfile)
284 ZEND_ARG_INFO(0, outfile)
3643 BIO * infile = NULL, * outfile = NULL; in PHP_FUNCTION() local
3673 outfile = BIO_new_file(outfilename, "w"); in PHP_FUNCTION()
3674 if (outfile == NULL) { in PHP_FUNCTION()
3759 SMIME_write_PKCS7(outfile, p7, infile, flags); in PHP_FUNCTION()
3766 BIO_free(outfile); in PHP_FUNCTION()
3784 BIO * infile = NULL, * outfile = NULL; in PHP_FUNCTION() local
3833 outfile = BIO_new_file(outfilename, "w"); in PHP_FUNCTION()
3834 if (outfile == NULL) { in PHP_FUNCTION()
[all …]

Completed in 44 milliseconds