Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/FSHA1
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
static FSHAHash HashBuffer
(
const void* Data, |
Calculate the hash on a single block and return it | Misc/SecureHash.h | |
static void HashBuffer
(
const void* Data, |
Calculate the hash on a single block and return it | Misc/SecureHash.h |
HashBuffer(const void *, uint64)
Description
Calculate the hash on a single block and return it
| Name | HashBuffer |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Misc/SecureHash.h |
| Include Path | #include "Misc/SecureHash.h" |
static FSHAHash HashBuffer
(
const void * Data,
uint64 DataSize
)
Resulting digest
Parameters
| Name | Remarks |
|---|---|
| Data | Input data to hash |
| DataSize | Size of the Data block |
HashBuffer(const void , uint64, uint8 )
Description
Calculate the hash on a single block and return it
| Name | HashBuffer |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Misc/SecureHash.h |
| Include Path | #include "Misc/SecureHash.h" |
| Source | /Engine/Source/Runtime/Core/Private/Misc/SecureHash.cpp |
static void HashBuffer
(
const void * Data,
uint64 DataSize,
uint8 * OutHash
)
Parameters
| Name | Remarks |
|---|---|
| Data | Input data to hash |
| DataSize | Size of the Data block |
| OutHash | Resulting hash value (20 byte buffer) |