Skip to content
This repository was archived by the owner on Feb 2, 2023. It is now read-only.

Commit 431e502

Browse files
Smita KamathDerek White
Smita Kamath
authored and
Derek White
committed
8283022: com/sun/crypto/provider/Cipher/AEAD/GCMBufferTest.java failing with -Xcomp after 8273297
Backport-of: 3416bfa2560e240b5e602f10e98e8a06c96852df
1 parent 2c01f3a commit 431e502

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)