Lines Matching refs:infile
248 ZEND_ARG_INFO(0, infile)
257 ZEND_ARG_INFO(0, infile)
3484 BIO * infile = NULL, * outfile = NULL; in PHP_FUNCTION() local
3516 infile = BIO_new_file(infilename, "r"); in PHP_FUNCTION()
3517 if (infile == NULL) { in PHP_FUNCTION()
3579 p7 = PKCS7_encrypt(recipcerts, infile, (EVP_CIPHER*)cipher, flags); in PHP_FUNCTION()
3604 (void)BIO_reset(infile); in PHP_FUNCTION()
3607 SMIME_write_PKCS7(outfile, p7, infile, flags); in PHP_FUNCTION()
3613 BIO_free(infile); in PHP_FUNCTION()
3632 BIO * infile = NULL, * outfile = NULL; in PHP_FUNCTION() local
3682 infile = BIO_new_file(infilename, "r"); in PHP_FUNCTION()
3683 if (infile == NULL) { in PHP_FUNCTION()
3694 p7 = PKCS7_sign(cert, privkey, others, infile, flags); in PHP_FUNCTION()
3700 (void)BIO_reset(infile); in PHP_FUNCTION()
3720 SMIME_write_PKCS7(outfile, p7, infile, flags); in PHP_FUNCTION()
3726 BIO_free(infile); in PHP_FUNCTION()