aboutsummaryrefslogtreecommitdiff
path: root/java/com/google/security/wycheproof/testcases/DsaTest.java
diff options
context:
space:
mode:
Diffstat (limited to 'java/com/google/security/wycheproof/testcases/DsaTest.java')
-rw-r--r--java/com/google/security/wycheproof/testcases/DsaTest.java9
1 files changed, 7 insertions, 2 deletions
diff --git a/java/com/google/security/wycheproof/testcases/DsaTest.java b/java/com/google/security/wycheproof/testcases/DsaTest.java
index edfaa74..bf7761e 100644
--- a/java/com/google/security/wycheproof/testcases/DsaTest.java
+++ b/java/com/google/security/wycheproof/testcases/DsaTest.java
@@ -28,8 +28,9 @@ package com.google.security.wycheproof;
import com.google.security.wycheproof.WycheproofRunner.ProviderType;
import com.google.security.wycheproof.WycheproofRunner.SlowTest;
-import java.lang.management.ManagementFactory;
-import java.lang.management.ThreadMXBean;
+// Android-removed: Android doesn't support JMX
+// import java.lang.management.ManagementFactory;
+// import java.lang.management.ThreadMXBean;
import java.math.BigInteger;
import java.security.GeneralSecurityException;
import java.security.KeyFactory;
@@ -1057,6 +1058,8 @@ public class DsaTest extends TestCase {
ProviderType.SPONGY_CASTLE})
@SuppressWarnings("InsecureCryptoUsage")
public void testTiming() throws Exception {
+ // BEGIN Android-removed: Android doesn't support JMX
+ /*
ThreadMXBean bean = ManagementFactory.getThreadMXBean();
if (!bean.isCurrentThreadCpuTimeSupported()) {
System.out.println("getCurrentThreadCpuTime is not supported. Skipping");
@@ -1126,6 +1129,8 @@ public class DsaTest extends TestCase {
if (maxSigmas >= 7) {
fail("Signatures with short timing have a biased k");
}
+ */
+ // END Android-removed: Android doesn't support JMX
}
/**