Navigation
API > API/Runtime > API/Runtime/Core
MD5 Context. MD5 functions. !it would be cool if these were implemented as subclasses of FArchive.
void appMD5Init( FMD5Context* context ); void appMD5Update( FMD5Context* context, uint8* input, int32 inputLen ); void appMD5Final( uint8* digest, FMD5Context* context ); void appMD5Transform( uint32* state, uint8* block ); void appMD5Encode( uint8* output, uint32* input, int32 len ); void appMD5Decode( uint32* output, uint8* input, int32 len );
| Name | FMD5 |
| Type | class |
| Header File | /Engine/Source/Runtime/Core/Public/Misc/SecureHash.h |
| Include Path | #include "Misc/SecureHash.h" |
Syntax
class FMD5
Constructors
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
FMD5() |
Misc/SecureHash.h |
Destructors
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
~FMD5() |
Misc/SecureHash.h |
Structs
| Name | Remarks |
|---|---|
| FContext |
Variables
Protected
| Name | Type | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|---|
| Context | FContext | Misc/SecureHash.h |
Functions
Public
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
void Final
(
uint8* digest |
MD5 finalization. | Misc/SecureHash.h | |
void Update
(
const uint8* input, |
MD5 block update operation. | Misc/SecureHash.h |
Static
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
static FString HashAnsiString
(
const TCHAR* String |
Helper to perform the very common case of hashing an ASCII string into a hex representation. | Misc/SecureHash.h | |
static FString HashBytes
(
const uint8* input, |
Helper to perform the very common case of hashing an in-memory array of bytes into a hex representation | Misc/SecureHash.h |