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