25 lines
673 B
PHP
25 lines
673 B
PHP
--TEST--
|
|
Bug #52093 (openssl_csr_sign truncates $serial)
|
|
--SKIPIF--
|
|
<?php
|
|
if (!extension_loaded("openssl")) print "skip";
|
|
if (PHP_INT_SIZE !== 8) die("skip this test is for 64bit platforms only");
|
|
?>
|
|
--FILE--
|
|
<?php
|
|
$dn = array(
|
|
"countryName" => "BR",
|
|
"stateOrProvinceName" => "Rio Grande do Sul",
|
|
"localityName" => "Porto Alegre",
|
|
"commonName" => "Henrique do N. Angelo",
|
|
"emailAddress" => "hnangelo@php.net"
|
|
);
|
|
|
|
$privkey = openssl_pkey_new();
|
|
$csr = openssl_csr_new($dn, $privkey);
|
|
$cert = openssl_csr_sign($csr, null, $privkey, 365, [], PHP_INT_MAX);
|
|
var_dump(openssl_x509_parse($cert)['serialNumber']);
|
|
?>
|
|
--EXPECT--
|
|
string(19) "9223372036854775807"
|