summaryrefslogtreecommitdiffstats
path: root/test/dhtest.c
diff options
context:
space:
mode:
authorMatt Caswell <matt@openssl.org>2016-05-26 10:55:11 +0100
committerMatt Caswell <matt@openssl.org>2016-06-06 11:09:06 +0100
commit5584f65a1027b06fe0cfc4be28d1a232cf180e42 (patch)
treee1d62f81d9d5a23575e4f4063b47d28e680afcdf /test/dhtest.c
parentf943e640efbb5ec30bf57b59468c094083c99eb2 (diff)
Deprecate the flags that switch off constant time
The flags RSA_FLAG_NO_CONSTTIME, DSA_FLAG_NO_EXP_CONSTTIME and DH_FLAG_NO_EXP_CONSTTIME which previously provided the ability to switch off the constant time implementation for RSA, DSA and DH have been made no-ops and deprecated. Reviewed-by: Richard Levitte <levitte@openssl.org>
Diffstat (limited to 'test/dhtest.c')
-rw-r--r--test/dhtest.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/test/dhtest.c b/test/dhtest.c
index c0551d5a3f..1dc395b44e 100644
--- a/test/dhtest.c
+++ b/test/dhtest.c
@@ -95,10 +95,6 @@ int main(int argc, char *argv[])
goto err;
bp = bg = NULL;
- /* Set a to run with normal modexp and b to use constant time */
- DH_clear_flags(a, DH_FLAG_NO_EXP_CONSTTIME);
- DH_set_flags(b, DH_FLAG_NO_EXP_CONSTTIME);
-
if (!DH_generate_key(a))
goto err;
DH_get0_key(a, &apub_key, &priv_key);