#ifndef CHAOS_HASHING_HASH_HPP #define CHAOS_HASHING_HASH_HPP #include namespace Chaos::Hashing { template class Hash { public: auto GetRawDigest() const { return static_cast(*this).GetRawDigest(); } std::string ToHexString() const { return static_cast(*this).ToHexString(); } }; } // namespace Chaos::Hashing #endif