aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTreehugger Robot <treehugger-gerrit@google.com>2023-03-30 18:27:01 +0000
committerAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>2023-03-30 18:27:01 +0000
commit2e04f8c5649563fe5846226db10a00285b680565 (patch)
tree9ac96473c50aa2acf7282589fb25f892024a1c0a
parentb382f0096b47d7941a677860c098a185877b66b4 (diff)
parent1484de2094c7bac97cd073ea790419b3ed9ba767 (diff)
downloadwycheproof-2e04f8c5649563fe5846226db10a00285b680565.tar.gz
Merge "Wycheproof: Correct a typo in bias ECDSA P256 StrongBox test." am: b5beb24a9a am: cd41732402 am: 2a6b2e796b am: 1484de2094
Original change: https://android-review.googlesource.com/c/platform/external/wycheproof/+/2506316 Change-Id: I016a646c880aa3505f6cdddce578a8da891c1915 Signed-off-by: Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>
-rw-r--r--keystore-cts/java/com/google/security/wycheproof/testcases/EcdsaTest.java10
1 files changed, 5 insertions, 5 deletions
diff --git a/keystore-cts/java/com/google/security/wycheproof/testcases/EcdsaTest.java b/keystore-cts/java/com/google/security/wycheproof/testcases/EcdsaTest.java
index 3a758f3..2e7108f 100644
--- a/keystore-cts/java/com/google/security/wycheproof/testcases/EcdsaTest.java
+++ b/keystore-cts/java/com/google/security/wycheproof/testcases/EcdsaTest.java
@@ -358,6 +358,11 @@ public class EcdsaTest {
}
@Test
+ public void testBiasSecp256r1_StrongBox() throws Exception {
+ testBias("SHA256WithECDSA", "secp256r1", true);
+ }
+
+ @Test
public void testBiasSecp384r1() throws Exception {
testBias("SHA384WithECDSA", "secp384r1");
}
@@ -368,11 +373,6 @@ public class EcdsaTest {
}
@Test
- public void testBiasSecp521r1_StrongBox() throws Exception {
- testBias("SHA256WithECDSA", "secp256r1", true);
- }
-
- @Test
@Ignore // Brainpool curve are not supported in AndroidKeyStore
public void testBiasBrainpoolP256r1() throws Exception {
testBias("SHA512WithECDSA", "brainpoolP256r1");