Skip to content

Commit 26fbd07

Browse files
chore(autoloader): Dump autoloader
Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
1 parent 8105705 commit 26fbd07

3 files changed

Lines changed: 12 additions & 12 deletions

File tree

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)