ASN1: add unit test for malformed ASN1 strings

This commit is contained in:
terrafrost 2020-03-02 10:03:02 -06:00
parent db6ce986f3
commit 935fa407e3

View File

@ -733,4 +733,18 @@ ut3+b2Xvzq8yzmHMFtLIJ6Afu1jJpqD82BUAFcvi5vhnP8M7b974R18WCOpgNQvXDI+2/8ZINeU=
$r = $x509->loadX509($r);
$this->assertSame($r['tbsCertificate']['extensions'][5]['extnValue']['excludedSubtrees'][1]['base']['iPAddress'], array('0.0.0.0', '0.0.0.0'));
}
/**
* @group github1456
*/
public function testRandomString()
{
$a = 'da7e705569d4196cd49cf3b3d92cd435ca34ccbe';
$a = pack('H*', $a);
$x509 = new File_X509();
$r = $x509->loadX509($a);
$this->assertFalse($r);
}
}