Lines Matching refs:infile
274 ZEND_ARG_INFO(0, infile)
283 ZEND_ARG_INFO(0, infile)
3643 BIO * infile = NULL, * outfile = NULL; in PHP_FUNCTION() local
3668 infile = BIO_new_file(infilename, "r"); in PHP_FUNCTION()
3669 if (infile == NULL) { in PHP_FUNCTION()
3731 p7 = PKCS7_encrypt(recipcerts, infile, (EVP_CIPHER*)cipher, flags); in PHP_FUNCTION()
3756 (void)BIO_reset(infile); in PHP_FUNCTION()
3759 SMIME_write_PKCS7(outfile, p7, infile, flags); in PHP_FUNCTION()
3765 BIO_free(infile); in PHP_FUNCTION()
3784 BIO * infile = NULL, * outfile = NULL; in PHP_FUNCTION() local
3827 infile = BIO_new_file(infilename, "r"); in PHP_FUNCTION()
3828 if (infile == NULL) { in PHP_FUNCTION()
3839 p7 = PKCS7_sign(cert, privkey, others, infile, flags); in PHP_FUNCTION()
3845 (void)BIO_reset(infile); in PHP_FUNCTION()
3865 SMIME_write_PKCS7(outfile, p7, infile, flags); in PHP_FUNCTION()
3871 BIO_free(infile); in PHP_FUNCTION()