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:
dc3c506
)
Remove some OPENSSL_NO_SHA that snuck in
author
Benjamin Kaduk
<bkaduk@akamai.com>
Wed, 20 Apr 2016 18:58:25 +0000
(13:58 -0500)
committer
Rich Salz
<rsalz@openssl.org>
Tue, 26 Apr 2016 12:32:10 +0000
(08:32 -0400)
Commit
d064e6ab52ac8e7b80b2a5d11b31bca583b769c7
removed all the
OPENSSL_NO_SHA guards, but commit
a50ad1daaa68c109ea1a14225a7aba8660526101
regenerated some due to the
sha entries in the %md_disabler table in apps/progs.pl.
Update %md_disabler to reflect that sha is not disableable, and
remove OPENSSL_NO_SHA for good.
Reviewed-by: Richard Levitte <levitte@openssl.org>
Reviewed-by: Matt Caswell <matt@openssl.org>
Reviewed-by: Rich Salz <rsalz@openssl.org>
apps/progs.h
patch
|
blob
|
history
apps/progs.pl
patch
|
blob
|
history
diff --git
a/apps/progs.h
b/apps/progs.h
index 346d58394efde1f08a9712ca62f6dff42492b221..9cc2f2b088ef45e1306e52f8229abef4011c8625 100644
(file)
--- a/
apps/progs.h
+++ b/
apps/progs.h
@@
-220,21
+220,11
@@
static FUNCTION functions[] = {
#ifndef OPENSSL_NO_GOST
{ FT_md, "gost", dgst_main},
#endif
-#ifndef OPENSSL_NO_SHA
{ FT_md, "sha1", dgst_main},
-#endif
-#ifndef OPENSSL_NO_SHA
{ FT_md, "sha224", dgst_main},
-#endif
-#ifndef OPENSSL_NO_SHA
{ FT_md, "sha256", dgst_main},
-#endif
-#ifndef OPENSSL_NO_SHA
{ FT_md, "sha384", dgst_main},
-#endif
-#ifndef OPENSSL_NO_SHA
{ FT_md, "sha512", dgst_main},
-#endif
#ifndef OPENSSL_NO_MDC2
{ FT_md, "mdc2", dgst_main},
#endif
diff --git
a/apps/progs.pl
b/apps/progs.pl
index 78e13e0d3f4e4d90f324cb725b4bb5eb963d0a31..e43d436665bc96476fc8223445f0273e54b4bb92 100644
(file)
--- a/
apps/progs.pl
+++ b/
apps/progs.pl
@@
-93,11
+93,6
@@
foreach my $cmd (@ARGV) {
}
my %md_disabler = (
- sha1 => "sha",
- sha224 => "sha",
- sha256 => "sha",
- sha384 => "sha",
- sha512 => "sha",
blake2b512 => "blake2",
blake2s256 => "blake2",
);