Navigation
API > API/Plugins > API/Plugins/JWT > API/Plugins/JWT/FJwtUtils
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
static bool Base64UrlDecode
(
const FStringView InSource, |
Decode base64 in url-safe mode from string to string. | JwtUtils.h | |
static bool Base64UrlDecode
(
const FStringView InSource, |
Decode base64 in url-safe mode from string to byte array. | JwtUtils.h |
Base64UrlDecode(const FStringView, FString &)
Description
Decode base64 in url-safe mode from string to string.
| Name | Base64UrlDecode |
| Type | function |
| Header File | /Engine/Plugins/Experimental/JWT/Source/JWT/Public/JwtUtils.h |
| Include Path | #include "JwtUtils.h" |
| Source | /Engine/Plugins/Experimental/JWT/Source/JWT/Private/JwtUtils.cpp |
static bool Base64UrlDecode
(
const FStringView InSource,
FString & OutDest
)
Whether the string could be decoded
Parameters
| Name | Remarks |
|---|---|
| InSource | The source string |
| OutDest | The destination string |
Base64UrlDecode(const FStringView, TArray< uint8 > &)
Description
Decode base64 in url-safe mode from string to byte array.
| Name | Base64UrlDecode |
| Type | function |
| Header File | /Engine/Plugins/Experimental/JWT/Source/JWT/Public/JwtUtils.h |
| Include Path | #include "JwtUtils.h" |
| Source | /Engine/Plugins/Experimental/JWT/Source/JWT/Private/JwtUtils.cpp |
static bool Base64UrlDecode
(
const FStringView InSource,
TArray < uint8 > & OutDest
)
Whether the string could be decoded
Parameters
| Name | Remarks |
|---|---|
| InSource | The source string |
| OutDest | The destination byte array |