Skip to content

Commit 3416bfa

Browse files
Smita KamathAnthony Scarpino
Smita Kamath
authored and
Anthony Scarpino
committed
8283022: com/sun/crypto/provider/Cipher/AEAD/GCMBufferTest.java failing with -Xcomp after 8273297
Reviewed-by: ascarpino
1 parent 80a7f7b commit 3416bfa

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/java.base/share/classes/com/sun/crypto/provider/GaloisCounterMode.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright (c) 2013, 2021, Oracle and/or its affiliates. All rights reserved.
2+
* Copyright (c) 2013, 2022, Oracle and/or its affiliates. All rights reserved.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -86,7 +86,7 @@ abstract class GaloisCounterMode extends CipherSpi {
8686
// data size when buffer is divided up to aid in intrinsics
8787
private static final int TRIGGERLEN = 65536; // 64k
8888
// x86-64 parallel intrinsic data size
89-
private static final int PARALLEL_LEN = 8192;
89+
private static final int PARALLEL_LEN = 7680;
9090
// max data size for x86-64 intrinsic
9191
private static final int SPLIT_LEN = 1048576; // 1MB
9292

0 commit comments

Comments
 (0)