mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-23 01:32:14 -05:00
18 lines
290 B
C++
18 lines
290 B
C++
/*
|
|
* Copyright (c) 2025, Altomani Gianluca <altomanigianluca@gmail.com>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#include <LibCrypto/Hash/MD5.h>
|
|
|
|
#include <openssl/evp.h>
|
|
|
|
namespace Crypto::Hash {
|
|
|
|
MD5::MD5(EVP_MD_CTX* context)
|
|
: OpenSSLHashFunction(EVP_md5(), context)
|
|
{
|
|
}
|
|
|
|
}
|