mirror of
https://github.com/Ed94/raddebugger.git
synced 2026-08-06 13:58:40 +00:00
delete unused blake3 headers
This commit is contained in:
committed by
Ryan Fleury
parent
ee3832ea3b
commit
24b427fe72
@@ -1,13 +0,0 @@
|
|||||||
// Copyright (c) Epic Games Tools
|
|
||||||
// Licensed under the MIT license (https://opensource.org/license/mit/)
|
|
||||||
|
|
||||||
#include "../third_party_ext/blake3/blake3_portable.c"
|
|
||||||
|
|
||||||
#if defined(__aarch64__) || defined(_M_ARM64)
|
|
||||||
#include "../third_party_ext/blake3/blake3_neon.c"
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#include "../third_party_ext/blake3/blake3_dispatch.c"
|
|
||||||
#include "../third_party_ext/blake3/blake3.c"
|
|
||||||
|
|
||||||
#pragma comment (lib, "blake3")
|
|
||||||
@@ -1,18 +0,0 @@
|
|||||||
// Copyright (c) Epic Games Tools
|
|
||||||
// Licensed under the MIT license (https://opensource.org/license/mit/)
|
|
||||||
|
|
||||||
#ifndef BASE_BLAKE3_H
|
|
||||||
#define BASE_BLAKE3_H
|
|
||||||
|
|
||||||
#include "../third_party_ext/blake3/blake3.h"
|
|
||||||
|
|
||||||
static void
|
|
||||||
blake3(void* out, size_t outlen, void* in, size_t inlen)
|
|
||||||
{
|
|
||||||
blake3_hasher hasher;
|
|
||||||
blake3_hasher_init(&hasher);
|
|
||||||
blake3_hasher_update(&hasher, in, inlen);
|
|
||||||
blake3_hasher_finalize(&hasher, (uint8_t*)out, outlen);
|
|
||||||
}
|
|
||||||
|
|
||||||
#endif // BASE_BLAKE3_H
|
|
||||||
Reference in New Issue
Block a user