Merge branch 'moosa-1.0' into moosa-2.0

This commit is contained in:
terrafrost 2021-04-02 11:08:36 -05:00
commit 6ddc6c0c53

View File

@ -435,6 +435,9 @@ class ASN1
break;
case self::TYPE_OBJECT_IDENTIFIER:
$current['content'] = $this->_decodeOID(substr($content, $content_pos));
if ($current['content'] === false) {
return false;
}
break;
/* Each character string type shall be encoded as if it had been declared:
[UNIVERSAL x] IMPLICIT OCTET STRING
@ -1127,6 +1130,11 @@ class ASN1
$oid = array();
$pos = 0;
$len = strlen($content);
if (ord($content[$len - 1]) & 0x80) {
return false;
}
$n = new BigInteger();
while ($pos < $len) {
$temp = ord($content[$pos++]);