summaryrefslogtreecommitdiffstats
path: root/apps/progs.pl
diff options
context:
space:
mode:
authorNick Lewis <nick.lewis@usa.g4s.com>2014-08-11 22:56:46 -0400
committerRich Salz <rsalz@akamai.com>2014-08-12 11:29:20 -0400
commit9aaa7be8d4be38c0a13a64a0a8cf6c4774c45a0f (patch)
tree55c6d81a8629bc0b440a00ee69de8a8ed947594d /apps/progs.pl
parent2a1393a4a8746cf0ddd51c1938706025f3b58ef2 (diff)
PR 2580: dgst missing current SHA algorithms
Update the dgst.pod page to include SHA224...512 algorithms. Update apps/progs.pl to add them to the digest command table. Reviewed-by: Tim Hudson <tjh@cryptosoft.com>
Diffstat (limited to 'apps/progs.pl')
-rw-r--r--apps/progs.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/progs.pl b/apps/progs.pl
index fa6258cf5e..2b1efd8fed 100644
--- a/apps/progs.pl
+++ b/apps/progs.pl
@@ -57,7 +57,7 @@ foreach (@ARGV)
{ print $str; }
}
-foreach ("md2","md4","md5","sha","sha1","mdc2","rmd160")
+foreach ("md2","md4","md5","sha","sha1","mdc2","rmd160","sha224","sha256","sha384","sha512")
{
push(@files,$_);
printf "#ifndef OPENSSL_NO_".uc($_)."\n\t{FUNC_TYPE_MD,\"".$_."\",dgst_main},\n#endif\n";