summaryrefslogtreecommitdiffstats
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
parent09cb8718fd65dc7126247808cb96b05147bb923f (diff)
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)
-rw-r--r--apps/speed.c5
-rw-r--r--doc/man1/openssl-speed.pod.in2
2 files changed, 4 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
diff --git a/doc/man1/openssl-speed.pod.in b/doc/man1/openssl-speed.pod.in
index 011a086eab..ab76ca6f13 100644
--- a/doc/man1/openssl-speed.pod.in
+++ b/doc/man1/openssl-speed.pod.in
@@ -146,6 +146,8 @@ supported by third party providers with the C<openssl speed> command.
The B<-engine> option was deprecated in OpenSSL 3.0.
+DSA512 was removed in OpenSSL 3.2.
+
=head1 COPYRIGHT
Copyright 2000-2022 The OpenSSL Project Authors. All Rights Reserved.