1
0
mirror of https://github.com/php/php-src.git synced 2026-04-28 10:43:30 +02:00

revert removal of openssl check, was confusion on my part

This commit is contained in:
Greg Beaver
2009-03-01 07:20:26 +00:00
parent 26ce51d6f1
commit 4d92c7bffc
@@ -5,6 +5,7 @@ Phar::getSupportedSignatures()
if (!extension_loaded("phar")) die("skip");
if (!extension_loaded("hash")) die("skip extension hash required");
$arr = Phar::getSupportedSignatures();
if (in_array("OpenSSL", $arr)) die("skip openssl support enabled");
if (!in_array('SHA-256', $arr)) die("skip hash extension loaded shared");
?>
--INI--