src/com/amazon/corretto/crypto/provider/AesGcmSpi.java [575:591]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                                tempBuffer,
                                0,
                                tempBufferLength,

                                tempBuffer,
                                0,

                                tagLength,
                                key,
                                iv,

                                // The cost of calling decryptAADBuf.getDataBuffer() when its buffer is empty is significant for 16-byte
                                // decrypt operations (approximately a 7% performance hit). To avoid this, we reuse the same empty array
                                // instead in this common-case path.
                                decryptAADBuf.size() != 0 ? decryptAADBuf.getDataBuffer() : EMPTY_ARRAY,
                                decryptAADBuf.size()
                        );
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/com/amazon/corretto/crypto/provider/AesGcmSpi.java [599:615]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                            tempBuffer,
                            0,
                            tempBufferLength,

                            tempBuffer,
                            0,

                            tagLength,
                            key,
                            iv,

                            // The cost of calling decryptAADBuf.getDataBuffer() when its buffer is empty is significant for 16-byte
                            // decrypt operations (approximately a 7% performance hit). To avoid this, we reuse the same empty array
                            // instead in this common-case path.
                            decryptAADBuf.size() != 0 ? decryptAADBuf.getDataBuffer() : EMPTY_ARRAY,
                            decryptAADBuf.size()
                    );
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



