Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/FAES
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
static void EncryptData
(
uint8* Contents, |
Encrypts a chunk of data using a specific key | Misc/AES.h | |
static void EncryptData
(
uint8* Contents, |
Encrypts a chunk of data using a specific key | Misc/AES.h | |
static void EncryptData
(
uint8* Contents, |
Encrypts a chunk of data using a specific key | Misc/AES.h |
EncryptData(uint8 *, uint64, const FAESKey &)
Description
Encrypts a chunk of data using a specific key
| Name | EncryptData |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Misc/AES.h |
| Include Path | #include "Misc/AES.h" |
| Source | /Engine/Source/Runtime/Core/Private/Misc/AES.cpp |
static void EncryptData
(
uint8 * Contents,
uint64 NumBytes,
const FAESKey & Key
)
Parameters
| Name | Remarks |
|---|---|
| Contents | the buffer to encrypt |
| NumBytes | the size of the buffer |
| Key | An FAESKey object containing the encryption key |
EncryptData(uint8 , uint64, const ANSICHAR )
Description
Encrypts a chunk of data using a specific key
| Name | EncryptData |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Misc/AES.h |
| Include Path | #include "Misc/AES.h" |
| Source | /Engine/Source/Runtime/Core/Private/Misc/AES.cpp |
static void EncryptData
(
uint8 * Contents,
uint64 NumBytes,
const ANSICHAR * Key
)
Parameters
| Name | Remarks |
|---|---|
| Contents | the buffer to encrypt |
| NumBytes | the size of the buffer |
| Key | a null terminated string that is a 32 bytes long |
EncryptData(uint8 , uint64, const uint8 , uint32)
Description
Encrypts a chunk of data using a specific key
| Name | EncryptData |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Misc/AES.h |
| Include Path | #include "Misc/AES.h" |
| Source | /Engine/Source/Runtime/Core/Private/Misc/AES.cpp |
static void EncryptData
(
uint8 * Contents,
uint64 NumBytes,
const uint8 * KeyBytes,
uint32 NumKeyBytes
)
Parameters
| Name | Remarks |
|---|---|
| Contents | the buffer to encrypt |
| NumBytes | the size of the buffer |
| Key | a byte array that is a 32 byte length |
| NumKeyBytes | length of Key byte array, must be 32 |