Ark Server API (ASA) - Wiki
Loading...
Searching...
No Matches
Fnv.h
Go to the documentation of this file.
1// Copyright Epic Games, Inc. All Rights Reserved.
2
3#pragma once
4
5#include "CoreTypes.h"
6#include "Misc/AssertionMacros.h"
7#include "Misc/CString.h"
8#include "Misc/Char.h"
9
10
11/**
12 * FNV hash generation for different types of input data
13 **/
14struct FFnv
15{
16 /** generates FNV hash of the memory area */
17 static uint32 MemFnv32( const void* Data, int32 Length, uint32 FNV=0 );
18 static uint64 MemFnv64( const void* Data, int32 Length, uint64 FNV=0 );
19};