Home
last modified time | relevance | path

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

/PHP-7.3/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 …]
H A Dopenssl_pkcs7_verify_basic.phpt7 $outfile = tempnam(sys_get_temp_dir(), "ssl");
8 if ($outfile === false) {
29 var_dump(openssl_pkcs7_verify($eml, PKCS7_NOVERIFY, $outfile));
30 var_dump(openssl_pkcs7_verify($eml, PKCS7_NOVERIFY, $outfile, $cainfo, $outfile, $contentfile));
31 var_dump(openssl_pkcs7_verify($eml, PKCS7_NOVERIFY, $outfile, $cainfo, $outfile, $contentfile, $pkc…
34 if (file_exists($outfile)) {
36 unlink($outfile);
/PHP-7.3/ext/gd/libgd/
H A Dgd_jpeg.c163 void jpeg_gdIOCtx_dest (j_compress_ptr cinfo, gdIOCtx * outfile);
165 void gdImageJpegCtx (gdImagePtr im, gdIOCtx * outfile, int quality) in gdImageJpegCtx() argument
213 jpeg_gdIOCtx_dest (&cinfo, outfile); in gdImageJpegCtx()
757 gdIOCtx *outfile; /* target stream */ member
809 if (gdPutBuf (dest->buffer, OUTPUT_BUF_SIZE, dest->outfile) != (size_t) OUTPUT_BUF_SIZE) { in empty_output_buffer()
835 if (datacount > 0 && ((size_t)gdPutBuf (dest->buffer, datacount, dest->outfile) != datacount)) { in term_destination()
847 void jpeg_gdIOCtx_dest (j_compress_ptr cinfo, gdIOCtx * outfile) in jpeg_gdIOCtx_dest() argument
865 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_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_png.c470 void gdImagePngCtx (gdImagePtr im, gdIOCtx * outfile) in gdImagePngCtx() argument
472 gdImagePngCtxEx(im, outfile, -1, -1); in gdImagePngCtx()
479 void gdImagePngCtxEx (gdImagePtr im, gdIOCtx * outfile, int level, int basefilter) in gdImagePngCtxEx() argument
523 png_set_write_fn(png_ptr, (void *) outfile, gdPngWriteData, gdPngFlushData); in gdImagePngCtxEx()
H A Dgd.h624 void gdImageWebpCtx (gdImagePtr im, gdIOCtx * outfile, int quantization);
/PHP-7.3/win32/build/
H A Dconfutils.js1813 var infile, outfile;
1835 outfile.Write(indata);
1836 outfile.Close();
2177 var outfile = null;
2234 if (outfile) {
2235 outfile.Close();
2236 outfile = null;
2245 outfile.Close();
2250 var infile, outfile;
2265 outfile.Write(indata);
[all …]
/PHP-7.3/ext/openssl/
H A DREADME139 bool openssl_pkcs7_encrypt(string infile, string outfile, array recipcerts,
144 named outfile.
156 bool openssl_pkcs7_sign(string infile, string outfile, mixed signcert, mixed
162 The result is placed in the file named by outfile.
H A Dopenssl.c291 ZEND_ARG_INFO(0, outfile)
300 ZEND_ARG_INFO(0, outfile)
5222 BIO * infile = NULL, * outfile = NULL; in PHP_FUNCTION() local
5253 if (outfile == NULL) { in PHP_FUNCTION()
5325 BIO_printf(outfile, "%s\n", Z_STRVAL_P(zcertval)); in PHP_FUNCTION()
5333 if (!SMIME_write_PKCS7(outfile, p7, infile, (int)flags)) { in PHP_FUNCTION()
5343 BIO_free(outfile); in PHP_FUNCTION()
5462 BIO * infile = NULL, * outfile = NULL; in PHP_FUNCTION() local
5513 if (outfile == NULL) { in PHP_FUNCTION()
5538 ret = BIO_printf(outfile, "%s\n", Z_STRVAL_P(hval)); in PHP_FUNCTION()
[all …]

Completed in 52 milliseconds