php-src/ext/openssl/tests/bug39217.phpt
Nikita Popov 7485978339
Migrate SKIPIF -> EXTENSIONS (#7138)
This is an automated migration of most SKIPIF extension_loaded checks.
2021-06-11 11:57:42 +02:00

18 lines
370 B
PHP

--TEST--
Bug #39217 (Large serial number return -1)
--EXTENSIONS--
openssl
--FILE--
<?php
$dir = __DIR__;
$certs = array('bug39217cert2.txt', 'bug39217cert1.txt');
foreach($certs as $cert) {
$res = openssl_x509_parse(file_get_contents($dir . '/' . $cert));
print_r($res['serialNumber']);
echo "\n";
}
?>
--EXPECT--
163040343498260435477161879008842183802
15