// Copyright Low Entry. Apache License, Version 2.0. #pragma once #include "CoreMinimal.h" class ULowEntryHashingPearsonLibrary { private: const static uint8 pearson[256]; public: static TArray Hash(const TArray& Bytes, const int32 HashLength) { return Hash(Bytes, 0, 0xf7777777, HashLength); } static TArray Hash(const TArray& Bytes, int32 Index, int32 Length, const int32 HashLength); };