#pragma once #include class SHA { public: static std::vector sha1(const std::vector &data); static std::vector sha512(const std::vector &data); };