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