/* * This Source Code Form is subject to the terms of the Mozilla Public * License, v. 2.0. If a copy of the MPL was not distributed with this * file, You can obtain one at http://mozilla.org/MPL/2.0/. * * Copyright: * 2014, Danny Robson */ #ifndef CRUFT_CRYPTO_HASH_SHA2_HPP #define CRUFT_CRYPTO_HASH_SHA2_HPP #include #include #include /////////////////////////////////////////////////////////////////////////////// namespace cruft::crypto::hash { class SHA256 { public: typedef std::array digest_t; public: digest_t operator() (cruft::view) noexcept; private: void process (void); uint64_t m_total; std::array H; union { std::array M; std::array C; }; }; } #endif