Skip to content

Commit e0afdd1

Browse files
Merge pull request #2414 from nextcloud/dependabot/composer/phpseclib/phpseclib-2.0.54
build(deps): bump phpseclib/phpseclib from 2.0.53 to 2.0.54
2 parents 8b81e99 + 26fbd07 commit e0afdd1

5 files changed

Lines changed: 20 additions & 20 deletions

File tree

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@
4646
"pear/pear-core-minimal": "^1.10",
4747
"php-http/guzzle7-adapter": "^1.1.0",
4848
"php-opencloud/openstack": "^3.14",
49-
"phpseclib/phpseclib": "^2.0.53",
49+
"phpseclib/phpseclib": "^2.0.54",
5050
"pimple/pimple": "^3.6.0",
5151
"psr/clock": "^1.0",
5252
"psr/container": "^2.0.2",

composer.lock

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

composer/installed.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3053,17 +3053,17 @@
30533053
},
30543054
{
30553055
"name": "phpseclib/phpseclib",
3056-
"version": "2.0.53",
3057-
"version_normalized": "2.0.53.0",
3056+
"version": "2.0.54",
3057+
"version_normalized": "2.0.54.0",
30583058
"source": {
30593059
"type": "git",
30603060
"url": "https://github.com/phpseclib/phpseclib.git",
3061-
"reference": "2d1a664b940b9b8f367185307dc010d11a2790f3"
3061+
"reference": "a96a835067c39ee7a709329fe70869817da18081"
30623062
},
30633063
"dist": {
30643064
"type": "zip",
3065-
"url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/2d1a664b940b9b8f367185307dc010d11a2790f3",
3066-
"reference": "2d1a664b940b9b8f367185307dc010d11a2790f3",
3065+
"url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/a96a835067c39ee7a709329fe70869817da18081",
3066+
"reference": "a96a835067c39ee7a709329fe70869817da18081",
30673067
"shasum": ""
30683068
},
30693069
"require": {
@@ -3081,7 +3081,7 @@
30813081
"ext-openssl": "Install the OpenSSL extension in order to speed up a wide variety of cryptographic operations.",
30823082
"ext-xml": "Install the XML extension to load XML formatted public keys."
30833083
},
3084-
"time": "2026-04-10T01:30:02+00:00",
3084+
"time": "2026-04-27T06:59:24+00:00",
30853085
"type": "library",
30863086
"installation-source": "dist",
30873087
"autoload": {
@@ -3146,7 +3146,7 @@
31463146
],
31473147
"support": {
31483148
"issues": "https://github.com/phpseclib/phpseclib/issues",
3149-
"source": "https://github.com/phpseclib/phpseclib/tree/2.0.53"
3149+
"source": "https://github.com/phpseclib/phpseclib/tree/2.0.54"
31503150
},
31513151
"funding": [
31523152
{

composer/installed.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -428,9 +428,9 @@
428428
'dev_requirement' => false,
429429
),
430430
'phpseclib/phpseclib' => array(
431-
'pretty_version' => '2.0.53',
432-
'version' => '2.0.53.0',
433-
'reference' => '2d1a664b940b9b8f367185307dc010d11a2790f3',
431+
'pretty_version' => '2.0.54',
432+
'version' => '2.0.54.0',
433+
'reference' => 'a96a835067c39ee7a709329fe70869817da18081',
434434
'type' => 'library',
435435
'install_path' => __DIR__ . '/../phpseclib/phpseclib',
436436
'aliases' => array(),

phpseclib/phpseclib/phpseclib/File/ASN1.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1181,8 +1181,8 @@ function _decodeOID($content)
11811181
$pos = 0;
11821182
$len = strlen($content);
11831183
// see https://github.com/openjdk/jdk/blob/2deb318c9f047ec5a4b160d66a4b52f93688ec42/src/java.base/share/classes/sun/security/util/ObjectIdentifier.java#L55
1184-
if ($len > 4096) {
1185-
//user_error('Object Identifier size is limited to 4096 bytes');
1184+
if ($len > 128) {
1185+
//user_error('Object Identifier size is limited to 128 bytes');
11861186
return false;
11871187
}
11881188

0 commit comments

Comments
 (0)