aboutsummaryrefslogtreecommitdiff
path: root/java/com/google/security/wycheproof/testcases/EcdsaTest.java
diff options
context:
space:
mode:
authorDaulet Zhanguzin <dauletz@google.com>2020-05-04 16:37:53 +0000
committerAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>2020-05-04 16:37:53 +0000
commit6da408c3517e10dec279a70ee91263bb8ca68c44 (patch)
treec57297b903987e510265cdb231e2c78e61d359a2 /java/com/google/security/wycheproof/testcases/EcdsaTest.java
parent059caa19f7dbe97d9d3127e14efc3656d306649c (diff)
parent6a6bd3c6e9bcce695ec41e2d3e157c7a9e2631e3 (diff)
downloadwycheproof-6da408c3517e10dec279a70ee91263bb8ca68c44.tar.gz
Merge "Remove deprecated BouncyCastle algorithms" am: 6a6bd3c6e9
Change-Id: Idb308532d04dbc4e8c9c0842d1d862ed6a85923e
Diffstat (limited to 'java/com/google/security/wycheproof/testcases/EcdsaTest.java')
-rw-r--r--java/com/google/security/wycheproof/testcases/EcdsaTest.java13
1 files changed, 13 insertions, 0 deletions
diff --git a/java/com/google/security/wycheproof/testcases/EcdsaTest.java b/java/com/google/security/wycheproof/testcases/EcdsaTest.java
index c279aaf..0d65286 100644
--- a/java/com/google/security/wycheproof/testcases/EcdsaTest.java
+++ b/java/com/google/security/wycheproof/testcases/EcdsaTest.java
@@ -16,6 +16,7 @@
package com.google.security.wycheproof;
+import com.google.security.wycheproof.WycheproofRunner.ExcludedTest;
import com.google.security.wycheproof.WycheproofRunner.ProviderType;
import com.google.security.wycheproof.WycheproofRunner.SlowTest;
// Android-removed: Android doesn't support JMX
@@ -640,12 +641,18 @@ public class EcdsaTest extends TestCase {
assertEquals(0, errors);
}
+ @ExcludedTest(
+ providers = {ProviderType.BOUNCY_CASTLE},
+ comment = "Signature.SHA256WithECDSA is removed")
public void testValidSignatures() throws Exception {
testVectors(
VALID_SIGNATURES, publicKey1(), "Hello", "SHA256WithECDSA", "Valid ECDSA signature",
true, true);
}
+ @ExcludedTest(
+ providers = {ProviderType.BOUNCY_CASTLE},
+ comment = "Signature.SHA256WithECDSA is removed")
public void testModifiedSignatures() throws Exception {
testVectors(
MODIFIED_SIGNATURES,
@@ -657,6 +664,9 @@ public class EcdsaTest extends TestCase {
true);
}
+ @ExcludedTest(
+ providers = {ProviderType.BOUNCY_CASTLE},
+ comment = "Signature.SHA256WithECDSA is removed")
public void testInvalidSignatures() throws Exception {
testVectors(
INVALID_SIGNATURES,
@@ -672,6 +682,9 @@ public class EcdsaTest extends TestCase {
* This test checks the basic functionality of ECDSA. It can also be used to generate simple test
* vectors.
*/
+ @ExcludedTest(
+ providers = {ProviderType.BOUNCY_CASTLE},
+ comment = "KeyPairGenerator.EC is removed")
public void testBasic() throws Exception {
String algorithm = "SHA256WithECDSA";
String hashAlgorithm = "SHA-256";