summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorMichael Baentsch <57787676+baentsch@users.noreply.github.com>2023-03-25 13:06:46 +0100
committerPauli <pauli@openssl.org>2023-03-30 12:26:50 +1100
commit7c966ab6b332d3666870856edb122d67cb09ead5 (patch)
treefb859a4a295315da262ad3144616500ab548e445 /apps
parent09cb8718fd65dc7126247808cb96b05147bb923f (diff)
downloadopenssl-new-7c966ab6b332d3666870856edb122d67cb09ead5.tar.gz
remove DSA512 from speed testing
Reviewed-by: Tomas Mraz <tomas@openssl.org> Reviewed-by: Todd Short <todd.short@me.com> Reviewed-by: Paul Dale <pauli@openssl.org> (Merged from https://github.com/openssl/openssl/pull/20603)
Diffstat (limited to 'apps')
-rw-r--r--apps/speed.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/apps/speed.c b/apps/speed.c
index 5d4b389da6..489548f5ca 100644
--- a/apps/speed.c
+++ b/apps/speed.c
@@ -349,9 +349,8 @@ static const OPT_PAIR doit_choices[] = {
static double results[ALGOR_NUM][SIZE_NUM];
-enum { R_DSA_512, R_DSA_1024, R_DSA_2048, DSA_NUM };
+enum { R_DSA_1024, R_DSA_2048, DSA_NUM };
static const OPT_PAIR dsa_choices[DSA_NUM] = {
- {"dsa512", R_DSA_512},
{"dsa1024", R_DSA_1024},
{"dsa2048", R_DSA_2048}
};
@@ -1447,7 +1446,7 @@ int speed_main(int argc, char **argv)
uint8_t ffdh_doit[FFDH_NUM] = { 0 };
#endif /* OPENSSL_NO_DH */
- static const unsigned int dsa_bits[DSA_NUM] = { 512, 1024, 2048 };
+ static const unsigned int dsa_bits[DSA_NUM] = { 1024, 2048 };
uint8_t dsa_doit[DSA_NUM] = { 0 };
/*
* We only test over the following curves as they are representative, To