diff options
author | Richard Levitte <levitte@openssl.org> | 2000-08-14 14:05:53 +0000 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2000-08-14 14:05:53 +0000 |
commit | 3009458e2f63b84e9631dfbf8b5c7cb38b2b283c (patch) | |
tree | b115b61e15485ab1dc8f250e8a996cb52117c788 /apps/dgst.c | |
parent | 5ce42a7e68956b313bc98e85e843d561fb06b6e9 (diff) | |
download | openssl-new-3009458e2f63b84e9631dfbf8b5c7cb38b2b283c.tar.gz |
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/dgst.c')
-rw-r--r-- | apps/dgst.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/apps/dgst.c b/apps/dgst.c index 3db28d25ca..5286dd01ea 100644 --- a/apps/dgst.c +++ b/apps/dgst.c @@ -135,6 +135,8 @@ int MAIN(int argc, char **argv) BIO_printf(bio_err,"-%3s to use the %s message digest algorithm (default)\n", LN_md5,LN_md5); BIO_printf(bio_err,"-%3s to use the %s message digest algorithm\n", + LN_md4,LN_md4); + BIO_printf(bio_err,"-%3s to use the %s message digest algorithm\n", LN_md2,LN_md2); BIO_printf(bio_err,"-%3s to use the %s message digest algorithm\n", LN_sha1,LN_sha1); |