aboutsummaryrefslogtreecommitdiff
path: root/java/com/google/security/wycheproof/ConscryptTest.java
diff options
context:
space:
mode:
authorDaulet Zhanguzin <dauletz@google.com>2020-05-13 18:19:23 +0000
committerAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>2020-05-13 18:19:23 +0000
commit858d8e28ae1adb954899c44645344a1b06a9a5ab (patch)
treec57297b903987e510265cdb231e2c78e61d359a2 /java/com/google/security/wycheproof/ConscryptTest.java
parentd0087c5dab04aab8a9d84ad3d60ea74ff7b825c4 (diff)
parent2c75c3e2c10481d78633389b8d3d095cf0b37edb (diff)
downloadwycheproof-858d8e28ae1adb954899c44645344a1b06a9a5ab.tar.gz
Remove deprecated BouncyCastle algorithms am: 013daa2841 am: 2c75c3e2c1
Change-Id: I2b8ba8b033415da763570851b5925d630f2312ae
Diffstat (limited to 'java/com/google/security/wycheproof/ConscryptTest.java')
-rw-r--r--java/com/google/security/wycheproof/ConscryptTest.java7
1 files changed, 6 insertions, 1 deletions
diff --git a/java/com/google/security/wycheproof/ConscryptTest.java b/java/com/google/security/wycheproof/ConscryptTest.java
index 2a87a7b..1cd5cf6 100644
--- a/java/com/google/security/wycheproof/ConscryptTest.java
+++ b/java/com/google/security/wycheproof/ConscryptTest.java
@@ -31,16 +31,21 @@ import org.junit.runners.Suite.SuiteClasses;
*/
@RunWith(WycheproofRunner.class)
@SuiteClasses({
+ AesEaxTest.class,
AesGcmTest.class,
BasicTest.class,
CipherInputStreamTest.class,
CipherOutputStreamTest.class,
+ DhTest.class,
+ DhiesTest.class,
+ DsaTest.class,
EcKeyTest.class,
EcdhTest.class,
EcdsaTest.class,
+ EciesTest.class,
RsaEncryptionTest.class,
RsaKeyTest.class,
- RsaSignatureTest.class
+ RsaSignatureTest.class,
})
@Provider(ProviderType.CONSCRYPT)
@Fast