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>
This commit is contained in:
12
apps/progs.h
12
apps/progs.h
@@ -172,6 +172,18 @@ FUNCTION functions[] = {
|
||||
#ifndef OPENSSL_NO_RMD160
|
||||
{FUNC_TYPE_MD,"rmd160",dgst_main},
|
||||
#endif
|
||||
#ifndef OPENSSL_NO_SHA224
|
||||
{FUNC_TYPE_MD,"sha224",dgst_main},
|
||||
#endif
|
||||
#ifndef OPENSSL_NO_SHA256
|
||||
{FUNC_TYPE_MD,"sha256",dgst_main},
|
||||
#endif
|
||||
#ifndef OPENSSL_NO_SHA384
|
||||
{FUNC_TYPE_MD,"sha384",dgst_main},
|
||||
#endif
|
||||
#ifndef OPENSSL_NO_SHA512
|
||||
{FUNC_TYPE_MD,"sha512",dgst_main},
|
||||
#endif
|
||||
#ifndef OPENSSL_NO_AES
|
||||
{FUNC_TYPE_CIPHER,"aes-128-cbc",enc_main},
|
||||
#endif
|
||||
|
||||
@@ -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";
|
||||
|
||||
Reference in New Issue
Block a user