/* * Copyright (C) 2019-present ScyllaDB */ /* * SPDX-License-Identifier: LicenseRef-ScyllaDB-Source-Available-1.0 */ #pragma once #include #include "bytes_fwd.hh" #include "utils/hashing.hh" template concept HasherReturningBytes = HasherReturning; class md5_hasher; template class cryptopp_hasher : public hasher { struct impl; std::unique_ptr _impl; public: cryptopp_hasher(); ~cryptopp_hasher(); cryptopp_hasher(cryptopp_hasher&&) noexcept; cryptopp_hasher(const cryptopp_hasher&); cryptopp_hasher& operator=(cryptopp_hasher&&) noexcept; cryptopp_hasher& operator=(const cryptopp_hasher&); bytes finalize(); std::array finalize_array(); void update(const char* ptr, size_t length) noexcept override; // Use update and finalize to compute the hash over the full view. static bytes calculate(const std::string_view& s); }; class md5_hasher final : public cryptopp_hasher {}; class sha256_hasher final : public cryptopp_hasher {}; std::array get_sha256(std::span);