mirror of
https://github.com/danog/phpseclib.git
synced 2024-12-12 00:59:48 +01:00
Merge branch 'master' into php5
* master: ASN1: let strings in as well ASN1: make File_ASN1 accept int primitives and not just Math_BigInteger objects when an integer is expected
This commit is contained in:
commit
1821f6b28f
@ -950,6 +950,9 @@ class File_ASN1
|
|||||||
case FILE_ASN1_TYPE_INTEGER:
|
case FILE_ASN1_TYPE_INTEGER:
|
||||||
case FILE_ASN1_TYPE_ENUMERATED:
|
case FILE_ASN1_TYPE_ENUMERATED:
|
||||||
if (!isset($mapping['mapping'])) {
|
if (!isset($mapping['mapping'])) {
|
||||||
|
if (is_numeric($source)) {
|
||||||
|
$source = new Math_BigInteger($source);
|
||||||
|
}
|
||||||
$value = $source->toBytes(true);
|
$value = $source->toBytes(true);
|
||||||
} else {
|
} else {
|
||||||
$value = array_search($source, $mapping['mapping']);
|
$value = array_search($source, $mapping['mapping']);
|
||||||
|
Loading…
Reference in New Issue
Block a user