2017-08-06 17:35:52 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* @author Jim Wigginton <terrafrost@php.net>
|
|
|
|
* @copyright 2017 Jim Wigginton
|
|
|
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
|
|
|
*/
|
|
|
|
|
|
|
|
use phpseclib\File\X509;
|
|
|
|
|
|
|
|
class Unit_File_X509_CRLTest extends PhpseclibTestCase
|
|
|
|
{
|
|
|
|
public function testLoadCRL()
|
|
|
|
{
|
2017-08-08 03:35:29 +00:00
|
|
|
$test = file_get_contents(__DIR__ . '/crl.bin');
|
2017-08-06 17:35:52 +00:00
|
|
|
|
|
|
|
$x509 = new X509();
|
|
|
|
|
|
|
|
$x509->loadCRL($test);
|
|
|
|
|
|
|
|
$reason = $x509->getRevokedCertificateExtension('9048354325167497831898969642461237543', 'id-ce-cRLReasons');
|
|
|
|
|
|
|
|
$this->assertSame('unspecified', $reason);
|
|
|
|
}
|
|
|
|
}
|