projects
/
oweals
/
openssl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
aea145e
)
Disable some algorithms by default
author
Dr. Stephen Henson
<steve@openssl.org>
Sun, 10 Jan 2016 13:33:31 +0000
(13:33 +0000)
committer
Dr. Stephen Henson
<steve@openssl.org>
Mon, 11 Jan 2016 02:41:15 +0000
(
02:41
+0000)
Reviewed-by: Viktor Dukhovni <viktor@openssl.org>
util/mkdef.pl
patch
|
blob
|
history
diff --git
a/util/mkdef.pl
b/util/mkdef.pl
index 31822e167d69cac452cedf8df81c1fa16c0f5bf7..03c8d805752b6ceebd0ec6a23d10048cc434744f 100755
(executable)
--- 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";