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