diff --git a/src/linker/base_ext/base_blake3_asm.c b/src/linker/base_ext/base_blake3_asm.c deleted file mode 100644 index b9d4c470..00000000 --- a/src/linker/base_ext/base_blake3_asm.c +++ /dev/null @@ -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") diff --git a/src/linker/base_ext/base_blake3_asm.h b/src/linker/base_ext/base_blake3_asm.h deleted file mode 100644 index 1efded7e..00000000 --- a/src/linker/base_ext/base_blake3_asm.h +++ /dev/null @@ -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