1--TEST--
2openssl_pkcs7_decrypt() tests
3--SKIPIF--
4<?php if (!extension_loaded("openssl")) print "skip"; ?>
5--FILE--
6<?php
7$infile = __DIR__ . "/cert.crt";
8$privkey = "file://" . __DIR__ . "/private_rsa_1024.key";
9$encrypted = tempnam(sys_get_temp_dir(), "ssl");
10if ($encrypted === false)
11    die("failed to get a temporary filename!");
12$outfile = tempnam(sys_get_temp_dir(), "ssl");
13if ($outfile === false) {
14    unlink($outfile);
15    die("failed to get a temporary filename!");
16}
17
18$single_cert = "file://" . __DIR__ . "/cert.crt";
19$headers = array("test@test", "testing openssl_pkcs7_encrypt()");
20$wrong = "wrong";
21$empty = "";
22
23openssl_pkcs7_encrypt($infile, $encrypted, $single_cert, $headers);
24var_dump(openssl_pkcs7_decrypt($encrypted, $outfile, $single_cert, $privkey));
25var_dump(openssl_pkcs7_decrypt($encrypted, $outfile, openssl_x509_read($single_cert), $privkey));
26var_dump(openssl_pkcs7_decrypt($encrypted, $outfile, $single_cert, $wrong));
27var_dump(openssl_pkcs7_decrypt($encrypted, $outfile, $wrong, $privkey));
28var_dump(openssl_pkcs7_decrypt($encrypted, $outfile, null, $privkey));
29var_dump(openssl_pkcs7_decrypt($wrong, $outfile, $single_cert, $privkey));
30var_dump(openssl_pkcs7_decrypt($empty, $outfile, $single_cert, $privkey));
31var_dump(openssl_pkcs7_decrypt($encrypted, $empty, $single_cert, $privkey));
32var_dump(openssl_pkcs7_decrypt($encrypted, $outfile, $empty, $privkey));
33var_dump(openssl_pkcs7_decrypt($encrypted, $outfile, $single_cert, $empty));
34
35if (file_exists($encrypted)) {
36    echo "true\n";
37    unlink($encrypted);
38}
39if (file_exists($outfile)) {
40    echo "true\n";
41    unlink($outfile);
42}
43?>
44--EXPECTF--
45bool(true)
46bool(true)
47
48Warning: openssl_pkcs7_decrypt(): unable to get private key in %s on line %d
49bool(false)
50
51Warning: openssl_pkcs7_decrypt(): unable to coerce parameter 3 to x509 cert in %s on line %d
52bool(false)
53
54Warning: openssl_pkcs7_decrypt(): unable to coerce parameter 3 to x509 cert in %s on line %d
55bool(false)
56bool(false)
57bool(false)
58bool(false)
59
60Warning: openssl_pkcs7_decrypt(): unable to coerce parameter 3 to x509 cert in %s on line %d
61bool(false)
62
63Warning: openssl_pkcs7_decrypt(): unable to get private key in %s on line %d
64bool(false)
65true
66true
67