diff options
author | Richard Levitte <levitte@openssl.org> | 2000-08-14 16:05:53 +0200 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2000-08-14 16:05:53 +0200 |
commit | 3009458e2f63b84e9631dfbf8b5c7cb38b2b283c (patch) | |
tree | b115b61e15485ab1dc8f250e8a996cb52117c788 /apps/progs.pl | |
parent | Memory leaks fix. It now looks like all memory leaks, at least around (diff) | |
download | openssl-3009458e2f63b84e9631dfbf8b5c7cb38b2b283c.tar.xz openssl-3009458e2f63b84e9631dfbf8b5c7cb38b2b283c.zip |
MD4 implemented. Assar Westerlund provided the digest code itself and the test utility, I added the bits to get a EVP interface, the command line utility and the speed test
Diffstat (limited to 'apps/progs.pl')
-rw-r--r-- | apps/progs.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/progs.pl b/apps/progs.pl index 9842d2ace7..3d5e8de221 100644 --- a/apps/progs.pl +++ b/apps/progs.pl @@ -41,7 +41,7 @@ foreach (@ARGV) { print $str; } } -foreach ("md2","md5","sha","sha1","mdc2","rmd160") +foreach ("md2","md4","md5","sha","sha1","mdc2","rmd160") { push(@files,$_); printf "\t{FUNC_TYPE_MD,\"%s\",dgst_main},\n",$_; |