Skip to content

Commit d3b1462

Browse files
committed
UserAttributeSubpacketInputStream: Increase MAX_LEN to 2^30
1 parent 9567351 commit d3b1462

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pg/src/main/java/org/bouncycastle/bcpg/UserAttributeSubpacketInputStream.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ public class UserAttributeSubpacketInputStream
1313
extends InputStream
1414
implements UserAttributeSubpacketTags
1515
{
16-
public static int MAX_LEN = 5 * 1024 * 1024;
16+
public static int MAX_LEN = 1 << 30;
1717

1818
InputStream in;
1919

0 commit comments

Comments
 (0)