Navigation
API > API/Plugins > API/Plugins/JWT
| Name | FJwtUtils |
| Type | class |
| Header File | /Engine/Plugins/Experimental/JWT/Source/JWT/Public/JwtUtils.h |
| Include Path | #include "JwtUtils.h" |
Syntax
class FJwtUtils
Functions
Static
| 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 | |
static TUniquePtr< FEncryptionContext > GetEncryptionContext() |
Get the pointer to the current platform encryption context (e.g. OpenSSL or SwitchSSL). | JwtUtils.h | |
static bool SplitEncodedJsonWebTokenString
(
const FStringView InEncodedJsonWebTokenString, |
Split an encoded JWT string into the 3 header, payload, and signature parts. | JwtUtils.h | |
static bool SplitStringView
(
const FStringView InSource, |
Split a StringView on a delimiter. | JwtUtils.h | |
static void StringViewToBytes
(
const FStringView InSource, |
Convert a StringView to a byte array. | JwtUtils.h |