8241680: crypto microbenchmarks need updating for disabled EC curves

Reviewed-by: ecaspole, redestad, skuksenko, jnimeh
diff --git a/test/micro/org/openjdk/bench/javax/crypto/full/KeyAgreementBench.java b/test/micro/org/openjdk/bench/javax/crypto/full/KeyAgreementBench.java
index 48d5c32..91908db 100644
--- a/test/micro/org/openjdk/bench/javax/crypto/full/KeyAgreementBench.java
+++ b/test/micro/org/openjdk/bench/javax/crypto/full/KeyAgreementBench.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2018, 2020, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -90,7 +90,7 @@
         @Param({"ECDH"})
         private String algorithm;
 
-        @Param({"224", "256", "384", "521"})
+        @Param({"256", "384", "521"})
         private int keyLength;
 
     }
diff --git a/test/micro/org/openjdk/bench/javax/crypto/full/KeyPairGeneratorBench.java b/test/micro/org/openjdk/bench/javax/crypto/full/KeyPairGeneratorBench.java
index 6a763be..868c3b1 100644
--- a/test/micro/org/openjdk/bench/javax/crypto/full/KeyPairGeneratorBench.java
+++ b/test/micro/org/openjdk/bench/javax/crypto/full/KeyPairGeneratorBench.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2015, 2018, Oracle and/or its affiliates. All rights reserved.
+ * Copyright (c) 2015, 2020, Oracle and/or its affiliates. All rights reserved.
  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
  *
  * This code is free software; you can redistribute it and/or modify it
@@ -67,7 +67,7 @@
         @Param({"EC"})
         private String algorithm;
 
-        @Param({"160", "224", "256"})
+        @Param({"256", "384", "521"})
         private int keyLength;
 
     }
diff --git a/test/micro/org/openjdk/bench/javax/crypto/full/SignatureBench.java b/test/micro/org/openjdk/bench/javax/crypto/full/SignatureBench.java
index aa04853..b94ebbf 100644
--- a/test/micro/org/openjdk/bench/javax/crypto/full/SignatureBench.java
+++ b/test/micro/org/openjdk/bench/javax/crypto/full/SignatureBench.java
@@ -121,7 +121,7 @@
         @Param({"SHA256withECDSA"})
         private String algorithm;
 
-        @Param({"160", "224", "256"})
+        @Param({"256"})
         private int keyLength;
 
     }