Home
last modified time | relevance | path

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

/PHP-7.1/ext/openssl/tests/
H A Dopenssl_pkcs7_encrypt_basic.phpt8 $outfile = tempnam(sys_get_temp_dir(), "ssl");
9 if ($outfile === false)
24 var_dump(openssl_pkcs7_encrypt($infile, $outfile, $single_cert, $headers));
29 var_dump(openssl_pkcs7_encrypt($infile, $outfile, $single_cert, $wrong));
30 var_dump(openssl_pkcs7_encrypt($wrong, $outfile, $single_cert, $headers));
31 var_dump(openssl_pkcs7_encrypt($empty, $outfile, $single_cert, $headers));
33 var_dump(openssl_pkcs7_encrypt($infile, $outfile, $wrong, $headers));
34 var_dump(openssl_pkcs7_encrypt($infile, $outfile, $empty, $headers));
35 var_dump(openssl_pkcs7_encrypt($infile, $outfile, $single_cert, $empty));
39 if (file_exists($outfile)) {
[all …]
H A Dopenssl_pkcs7_decrypt_basic.phpt12 $outfile = tempnam(sys_get_temp_dir(), "ssl");
13 if ($outfile === false) {
14 unlink($outfile);
26 var_dump(openssl_pkcs7_decrypt($encrypted, $outfile, $single_cert, $wrong));
27 var_dump(openssl_pkcs7_decrypt($encrypted, $outfile, $wrong, $privkey));
28 var_dump(openssl_pkcs7_decrypt($encrypted, $outfile, null, $privkey));
29 var_dump(openssl_pkcs7_decrypt($wrong, $outfile, $single_cert, $privkey));
30 var_dump(openssl_pkcs7_decrypt($empty, $outfile, $single_cert, $privkey));
32 var_dump(openssl_pkcs7_decrypt($encrypted, $outfile, $empty, $privkey));
39 if (file_exists($outfile)) {
[all …]
H A Dopenssl_pkcs7_sign_basic.phpt8 $outfile = tempnam(sys_get_temp_dir(), "ssl");
9 if ($outfile === false) {
22 var_dump(openssl_pkcs7_sign($infile, $outfile, $single_cert, $privkey, $headers));
25 var_dump(openssl_pkcs7_sign($infile, $outfile, $single_cert, $privkey, $wrong));
26 var_dump(openssl_pkcs7_sign($wrong, $outfile, $single_cert, $privkey, $headers));
29 var_dump(openssl_pkcs7_sign($infile, $outfile, $wrong, $privkey, $headers));
30 var_dump(openssl_pkcs7_sign($infile, $outfile, $empty, $privkey, $headers));
31 var_dump(openssl_pkcs7_sign($infile, $outfile, $single_cert, $privkey, $empty));
32 var_dump(openssl_pkcs7_sign($infile, $outfile, $single_cert, $wrong, $headers));
34 if (file_exists($outfile)) {
[all …]
/PHP-7.1/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.c102 void gdImageWebpCtx (gdImagePtr im, gdIOCtx * outfile, int quantization) in gdImageWebpCtx() argument
158 gdPutBuf(out, out_size, 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.h613 void gdImageWebpCtx (gdImagePtr im, gdIOCtx * outfile, int quantization);
/PHP-7.1/win32/build/
H A Dconfutils.js1749 var infile, outfile;
1771 outfile.Write(indata);
1772 outfile.Close();
2072 var outfile = null;
2129 if (outfile) {
2130 outfile.Close();
2131 outfile = null;
2140 outfile.Close();
2145 var infile, outfile;
2160 outfile.Write(indata);
[all …]
/PHP-7.1/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.c292 ZEND_ARG_INFO(0, outfile)
301 ZEND_ARG_INFO(0, outfile)
5098 BIO * infile = NULL, * outfile = NULL; in PHP_FUNCTION() local
5129 if (outfile == NULL) { in PHP_FUNCTION()
5201 BIO_printf(outfile, "%s\n", Z_STRVAL_P(zcertval)); in PHP_FUNCTION()
5209 if (!SMIME_write_PKCS7(outfile, p7, infile, (int)flags)) { in PHP_FUNCTION()
5219 BIO_free(outfile); in PHP_FUNCTION()
5237 BIO * infile = NULL, * outfile = NULL; in PHP_FUNCTION() local
5288 if (outfile == NULL) { in PHP_FUNCTION()
5313 ret = BIO_printf(outfile, "%s\n", Z_STRVAL_P(hval)); in PHP_FUNCTION()
[all …]

Completed in 66 milliseconds