aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPrashant Patil <patilprashant@google.com>2022-11-25 16:17:08 +0000
committerAutomerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com>2022-11-25 16:17:08 +0000
commit6897237aaa043a8c49dae3e7389219374ad7d871 (patch)
tree4092f2e931f89b7756760ab051859092eb8c80ac
parent42dbf01f16769b9ef93a471479308dbf36de0b91 (diff)
parent94446b3aaa6cfefed92369d07cd4eea045208930 (diff)
downloadwycheproof-6897237aaa043a8c49dae3e7389219374ad7d871.tar.gz
Removed assumption after software emulation support am: 52862ce682 am: 0a89faefb2 am: 94446b3aaa
Original change: https://android-review.googlesource.com/c/platform/external/wycheproof/+/2309226 Change-Id: Ic54808116105dd199d3cc8baad2cc7fd069a57c9 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/EcdhTest.java10
1 files changed, 0 insertions, 10 deletions
diff --git a/keystore-cts/java/com/google/security/wycheproof/testcases/EcdhTest.java b/keystore-cts/java/com/google/security/wycheproof/testcases/EcdhTest.java
index fc54787..f57ad29 100644
--- a/keystore-cts/java/com/google/security/wycheproof/testcases/EcdhTest.java
+++ b/keystore-cts/java/com/google/security/wycheproof/testcases/EcdhTest.java
@@ -48,7 +48,6 @@ import android.security.keystore.KeyProtection;
import android.security.keystore.KeyProperties;
import android.security.keystore.KeyGenParameterSpec;
import android.keystore.cts.util.KeyStoreUtil;
-import android.keystore.cts.util.TestUtils;
import androidx.test.InstrumentationRegistry;
@@ -829,15 +828,6 @@ public static final EcPublicKeyTestVector EC_VALID_PUBLIC_KEY =
@Test
public void testNistCurveLargePrivateKey() throws Exception {
- Context context = InstrumentationRegistry.getInstrumentation().getTargetContext();
- /**
- * Software emulation of ECDH / AGREE_KEY function is performed by Keystore when the underlying
- * device is a Keymaster implementation rather than KeyMint. However, this emulated support does
- * not (yet) support imported ECDH keys, so skip the test if this is the case (b/216434270).
- */
- assumeTrue("This test can only test with keymint version 1 and above",
- TestUtils.getFeatureVersionKeystore(context) >= KeyStoreUtil.KM_VERSION_KEYMINT_1);
-
testLargePrivateKey(EcUtil.getNistP224Params());
testLargePrivateKey(EcUtil.getNistP256Params());
testLargePrivateKey(EcUtil.getNistP384Params());