/* * Copyright (c) 2025, Altomani Gianluca * * SPDX-License-Identifier: BSD-2-Clause */ #include #include namespace Crypto::Hash { BLAKE2b::BLAKE2b(EVP_MD_CTX* context) : OpenSSLHashFunction(EVP_blake2b512(), context) { } }