diff options
author | Dr. Stephen Henson <steve@openssl.org> | 2016-01-10 14:33:31 +0100 |
---|---|---|
committer | Dr. Stephen Henson <steve@openssl.org> | 2016-01-11 03:41:15 +0100 |
commit | 3af45d9978c0bf6ce333e9666f41a03d41822d0c (patch) | |
tree | b5f085ab525c6fbbdfce008d42df9c220b4436bd | |
parent | Regenerate SSL record/statem error strings (diff) | |
download | openssl-3af45d9978c0bf6ce333e9666f41a03d41822d0c.tar.xz openssl-3af45d9978c0bf6ce333e9666f41a03d41822d0c.zip |
Disable some algorithms by default
Reviewed-by: Viktor Dukhovni <viktor@openssl.org>
-rwxr-xr-x | util/mkdef.pl | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/util/mkdef.pl b/util/mkdef.pl index 31822e167d..03c8d80575 100755 --- a/util/mkdef.pl +++ b/util/mkdef.pl @@ -123,6 +123,9 @@ my %disabled_algorithms; foreach (@known_algorithms) { $disabled_algorithms{$_} = 0; } +# disabled by default +$disabled_algorithms{"CRYPTO_MDEBUG"} = 1; +$disabled_algorithms{"STATIC_ENGINE"} = 1; my $options=""; open(IN,"<Makefile") || die "unable to open Makefile!\n"; |