ladybird/Libraries/LibCrypto/Hash/BLAKE2b.cpp
2025-01-13 17:00:18 +01:00

18 lines
309 B
C++

/*
* Copyright (c) 2025, Altomani Gianluca <altomanigianluca@gmail.com>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#include <LibCrypto/Hash/BLAKE2b.h>
#include <openssl/evp.h>
namespace Crypto::Hash {
BLAKE2b::BLAKE2b(EVP_MD_CTX* context)
: OpenSSLHashFunction(EVP_blake2b512(), context)
{
}
}