diff options
author | lloyd <[email protected]> | 2009-03-27 20:07:00 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2009-03-27 20:07:00 +0000 |
commit | 3246455af96873602d815aa46f6ff6ae2266241a (patch) | |
tree | ab0f7cdf96b3f57d09a854f52723fd075fec4325 /src/hash/md2/md2.h | |
parent | 7097612ae6fafa2d9acc02d2c383e71c2d87af0c (diff) |
No reason to include mdx_hash.h in MD2 since it derives directly from
HashFunction; include hash.h instead
Diffstat (limited to 'src/hash/md2/md2.h')
-rw-r--r-- | src/hash/md2/md2.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/hash/md2/md2.h b/src/hash/md2/md2.h index 2c53d1cf0..4d06c8872 100644 --- a/src/hash/md2/md2.h +++ b/src/hash/md2/md2.h @@ -1,18 +1,18 @@ -/************************************************* -* MD2 Header File * -* (C) 1999-2007 Jack Lloyd * -*************************************************/ +/* +* MD2 Header File +* (C) 1999-2007 Jack Lloyd +*/ #ifndef BOTAN_MD2_H__ #define BOTAN_MD2_H__ -#include <botan/mdx_hash.h> +#include <botan/hash.h> namespace Botan { -/************************************************* -* MD2 * -*************************************************/ +/* +* MD2 +*/ class BOTAN_DLL MD2 : public HashFunction { public: |