mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-11-05 07:40:58 +00:00
19 lines
309 B
C++
19 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)
|
||
|
|
{
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|