aboutsummaryrefslogtreecommitdiff
path: root/java/com/google/security/wycheproof/testcases/CipherOutputStreamTest.java
diff options
context:
space:
mode:
Diffstat (limited to 'java/com/google/security/wycheproof/testcases/CipherOutputStreamTest.java')
-rw-r--r--java/com/google/security/wycheproof/testcases/CipherOutputStreamTest.java12
1 files changed, 6 insertions, 6 deletions
diff --git a/java/com/google/security/wycheproof/testcases/CipherOutputStreamTest.java b/java/com/google/security/wycheproof/testcases/CipherOutputStreamTest.java
index 735056e..e4f288a 100644
--- a/java/com/google/security/wycheproof/testcases/CipherOutputStreamTest.java
+++ b/java/com/google/security/wycheproof/testcases/CipherOutputStreamTest.java
@@ -52,7 +52,7 @@ public class CipherOutputStreamTest extends TestCase {
}
/** Test vectors */
- @SuppressWarnings("InsecureCipherMode")
+ @SuppressWarnings("InsecureCryptoUsage")
public static class TestVector {
public String algorithm;
public SecretKeySpec key;
@@ -99,7 +99,7 @@ public class CipherOutputStreamTest extends TestCase {
return result;
}
- @SuppressWarnings("InsecureCipherMode")
+ @SuppressWarnings("InsecureCryptoUsage")
public void testEncrypt(Iterable<TestVector> tests) throws Exception {
for (TestVector t : tests) {
Cipher cipher = Cipher.getInstance(t.algorithm);
@@ -113,7 +113,7 @@ public class CipherOutputStreamTest extends TestCase {
}
}
- @SuppressWarnings("InsecureCipherMode")
+ @SuppressWarnings("InsecureCryptoUsage")
public void testDecrypt(Iterable<TestVector> tests) throws Exception {
for (TestVector t : tests) {
Cipher cipher = Cipher.getInstance(t.algorithm);
@@ -127,7 +127,7 @@ public class CipherOutputStreamTest extends TestCase {
}
}
- @SuppressWarnings("InsecureCipherMode")
+ @SuppressWarnings("InsecureCryptoUsage")
public void testCorruptDecrypt(Iterable<TestVector> tests) throws Exception {
for (TestVector t : tests) {
Cipher cipher = Cipher.getInstance(t.algorithm);
@@ -158,7 +158,7 @@ public class CipherOutputStreamTest extends TestCase {
}
}
- @SuppressWarnings("InsecureCipherMode")
+ @SuppressWarnings("InsecureCryptoUsage")
public void testCorruptDecryptEmpty(Iterable<TestVector> tests) throws Exception {
for (TestVector t : tests) {
Cipher cipher = Cipher.getInstance(t.algorithm);
@@ -216,7 +216,7 @@ public class CipherOutputStreamTest extends TestCase {
}
/** Tests CipherOutputStream with AES-EAX if AES-EAS is supported by the provider. */
- @SuppressWarnings("InsecureCipherMode")
+ @SuppressWarnings("InsecureCryptoUsage")
public void testAesEax() throws Exception {
final String algorithm = "AES/EAX/NoPadding";
final int[] keySizes = {16, 32};