1--TEST--
2openssl_cms_decrypt() tests
3--EXTENSIONS--
4openssl
5--FILE--
6<?php
7$infile = __DIR__ . "/plain.txt";
8$privkey = "file://" . __DIR__ . "/private_rsa_1024.key";
9$encrypted = tempnam(sys_get_temp_dir(), "cms_dec_basic");
10if ($encrypted === false)
11    die("failed to get a temporary filename!");
12$outfile = $encrypted . ".out";
13
14$single_cert = "file://" . __DIR__ . "/cert.crt";
15$headers = array("test@test", "testing openssl_cms_encrypt()");
16$wrong = "wrong";
17$empty = "";
18$cipher = OPENSSL_CIPHER_AES_128_CBC;
19
20openssl_cms_encrypt($infile, $encrypted, $single_cert, $headers, cipher_algo: $cipher);
21
22var_dump(openssl_cms_decrypt($encrypted, $outfile, $single_cert, $privkey));
23print("\nDecrypted text:\n");
24readfile($outfile);
25var_dump(openssl_cms_decrypt($encrypted, $outfile, openssl_x509_read($single_cert), $privkey));
26var_dump(openssl_cms_decrypt($encrypted, $outfile, $single_cert, $wrong));
27var_dump(openssl_cms_decrypt($encrypted, $outfile, $wrong, $privkey));
28var_dump(openssl_cms_decrypt($encrypted, $outfile, null, $privkey));
29var_dump(openssl_cms_decrypt($wrong, $outfile, $single_cert, $privkey));
30var_dump(openssl_cms_decrypt($empty, $outfile, $single_cert, $privkey));
31var_dump(openssl_cms_decrypt($encrypted, $empty, $single_cert, $privkey));
32var_dump(openssl_cms_decrypt($encrypted, $outfile, $empty, $privkey));
33var_dump(openssl_cms_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)
46
47Decrypted text:
48Now is the winter of our discontent.
49bool(true)
50
51Warning: openssl_cms_decrypt(): Unable to get private key in %s on line %d
52bool(false)
53
54Warning: openssl_cms_decrypt(): X.509 Certificate cannot be retrieved in %s on line %d
55bool(false)
56
57Warning: openssl_cms_decrypt(): X.509 Certificate cannot be retrieved in %s on line %d
58bool(false)
59bool(false)
60bool(false)
61bool(false)
62
63Warning: openssl_cms_decrypt(): X.509 Certificate cannot be retrieved in %s on line %d
64bool(false)
65
66Warning: openssl_cms_decrypt(): Unable to get private key in %s on line %d
67bool(false)
68true
69true
70