forked from corretto/amazon-corretto-crypto-provider
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfindbugs-exclude.xml
More file actions
26 lines (25 loc) · 834 Bytes
/
findbugs-exclude.xml
File metadata and controls
26 lines (25 loc) · 834 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<!-- Copyright Amazon.com Inc. or its affiliates. All Rights Reserved. -->
<!-- SPDX-License-Identifier: Apache-2.0 -->
<FindBugsFilter>
<Match>
<And>
<Class name="com.amazon.corretto.crypto.provider.AesGcmSpi"/>
<Or>
<Field name="decryptInputBuf"/>
<Field name="iv"/>
<Field name="key"/>
<Field name="needReset"/>
<Field name="opMode"/>
<Field name="tagLength"/>
</Or>
</And>
<Bug pattern="IS2_INCONSISTENT_SYNC"/>
</Match>
<Match>
<And>
<Class name="com.amazon.corretto.crypto.provider.AesGcmSpi$NativeContext"/>
<Field name="released"/>
</And>
<Bug pattern="IS2_INCONSISTENT_SYNC"/>
</Match>
</FindBugsFilter>