aboutsummaryrefslogtreecommitdiff
path: root/java/com/google/security/wycheproof/testcases/RsaEncryptionTest.java
diff options
context:
space:
mode:
authorThai Duong <thaidn@users.noreply.github.com>2017-02-01 16:04:21 -0800
committerGitHub <noreply@github.com>2017-02-01 16:04:21 -0800
commit9130b7625ff41c8f4684de3b352ef04cf487cac7 (patch)
tree3b4fda64cfd9dc8b8563c2c2add135ac972f7b20 /java/com/google/security/wycheproof/testcases/RsaEncryptionTest.java
parentf2f6a309e29139b949dde8ca59305699f5daf462 (diff)
downloadwycheproof-9130b7625ff41c8f4684de3b352ef04cf487cac7.tar.gz
Fix ErrorProne build errors (#21)
* Fix ErrorProne build errors
Diffstat (limited to 'java/com/google/security/wycheproof/testcases/RsaEncryptionTest.java')
-rw-r--r--java/com/google/security/wycheproof/testcases/RsaEncryptionTest.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/java/com/google/security/wycheproof/testcases/RsaEncryptionTest.java b/java/com/google/security/wycheproof/testcases/RsaEncryptionTest.java
index 79a9d5c..0744b66 100644
--- a/java/com/google/security/wycheproof/testcases/RsaEncryptionTest.java
+++ b/java/com/google/security/wycheproof/testcases/RsaEncryptionTest.java
@@ -94,7 +94,7 @@ public class RsaEncryptionTest extends TestCase {
* differences are too small to be reliably detectable in unit tests.
* </ul>
*/
- @SuppressWarnings("InsecureCipherMode")
+ @SuppressWarnings("InsecureCryptoUsage")
public void testExceptions(String algorithm) throws Exception {
KeyPairGenerator keygen = KeyPairGenerator.getInstance("RSA");
keygen.initialize(1024);