Navigation
API > API/Plugins > API/Plugins/JWT > API/Plugins/JWT/FJsonWebToken
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
bool Verify () |
Deprecated method to signature validate the JWT. | JsonWebToken.h | |
bool Verify
(
const IJwtAlgorithm& Algorithm, |
Signature validate and verify the JWT. | JsonWebToken.h |
Verify()
Description
Deprecated method to signature validate the JWT.
| Name | Verify |
| Type | function |
| Header File | /Engine/Plugins/Experimental/JWT/Source/JWT/Public/JsonWebToken.h |
| Include Path | #include "JsonWebToken.h" |
| Source | /Engine/Plugins/Experimental/JWT/Source/JWT/Private/JsonWebToken.cpp |
bool Verify() const
False
Verify(const IJwtAlgorithm &, const FStringView)
Description
Signature validate and verify the JWT.
- Validates the signature against the encoded header and encoded payload
- Verifies the basic claims of the JWT
- Ensures the issuers match
| Name | Verify |
| Type | function |
| Header File | /Engine/Plugins/Experimental/JWT/Source/JWT/Public/JsonWebToken.h |
| Include Path | #include "JsonWebToken.h" |
| Source | /Engine/Plugins/Experimental/JWT/Source/JWT/Private/JsonWebToken.cpp |
bool Verify
(
const IJwtAlgorithm & Algorithm,
const FStringView ExpectedIssuer
) const
Whether the JWT was successfully verified
Parameters
| Name | Remarks |
|---|---|
| Algorithm | Implementation of the cryptographic algorithm used for signature validation |
| ExpectedIssuer | The expected issuer |