diff --git a/src/rmd_hash.h b/src/rmd_hash.h index e18be5c..2c14a96 100644 --- a/src/rmd_hash.h +++ b/src/rmd_hash.h @@ -22,25 +22,12 @@ #if HAVE_CRYPTOPP==1 -#include "hash.h" +#include "sha_hash.h" #include -class rmd128hash : public hash_func -{ -public: - uint size() { - return CryptoPP::RIPEMD128::DIGESTSIZE; - } - - std::vector operator() (const std::vector&a) { - std::vector r; - r.resize (size() ); - CryptoPP::RIPEMD128().CalculateDigest (& (r[0]), - & (a[0]), - a.size() ); - return r; - } -}; +//it's used just like SHA, so create it from SHA +class rmd128hash : public shahash {}; +class rmd128proc : public shaproc {}; #endif //HAVE_CRYPTOPP==1 diff --git a/src/sha_hash.h b/src/sha_hash.h index 6589b60..511841e 100644 --- a/src/sha_hash.h +++ b/src/sha_hash.h @@ -25,56 +25,56 @@ #include -class sha256hash : public hash_func +template +class shahash : public hash_func { public: uint size() { - return CryptoPP::SHA256::DIGESTSIZE; + return shatype::DIGESTSIZE; } std::vector operator() (const std::vector&a) { std::vector r; r.resize (size() ); - CryptoPP::SHA256().CalculateDigest (& (r[0]), - & (a[0]), - a.size() ); + shatype().CalculateDigest (& (r[0]), + & (a[0]), + a.size() ); return r; } }; -class sha384hash : public hash_func +class sha256hash : public shahash {}; +class sha384hash : public shahash {}; +class sha512hash : public shahash {}; + +template +class shaproc : public hash_proc { + shatype state; public: uint size() { - return CryptoPP::SHA384::DIGESTSIZE; + return shatype::DIGESTSIZE; } - std::vector operator() (const std::vector&a) { + void init() { + state.Restart(); + } + + void eat (const std::vector&a) { + state.Update (& (a[0]), a.size() ); + } + + std::vector finish() { std::vector r; r.resize (size() ); - CryptoPP::SHA384().CalculateDigest (& (r[0]), - & (a[0]), - a.size() ); + state.Final (& (r[0]) ); return r; } }; -class sha512hash : public hash_func -{ -public: - uint size() { - return CryptoPP::SHA512::DIGESTSIZE; - } - - std::vector operator() (const std::vector&a) { - std::vector r; - r.resize (size() ); - CryptoPP::SHA512().CalculateDigest (& (r[0]), - & (a[0]), - a.size() ); - return r; - } -}; +class sha256proc : public shaproc {}; +class sha384proc : public shaproc {}; +class sha512proc : public shaproc {}; #endif //HAVE_CRYPTOPP==1 diff --git a/src/tiger_hash.h b/src/tiger_hash.h index 8c83744..915b85b 100644 --- a/src/tiger_hash.h +++ b/src/tiger_hash.h @@ -22,25 +22,12 @@ #if HAVE_CRYPTOPP==1 -#include "hash.h" +#include "sha_hash.h" #include -class tiger192hash : public hash_func -{ -public: - uint size() { - return CryptoPP::Tiger::DIGESTSIZE; - } - - std::vector operator() (const std::vector&a) { - std::vector r; - r.resize (size() ); - CryptoPP::Tiger().CalculateDigest (& (r[0]), - & (a[0]), - a.size() ); - return r; - } -}; +//it's used just like SHA, so create it from SHA +class tiger192hash : public shahash {}; +class tiger192proc : public shaproc {}; #endif //HAVE_CRYPTOPP==1