Skip to content

Latest commit

 

History

History

JWTPlugin

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Supported Platforms

Windows Linux

Features

JWT Plugin provide a c++ and Blueprint support of JWT for UE4, You can easily:

1. Generate JWT Token
2. Verify JWT Token
3. Extract JWT Token Claims

JWTPlugin Blueprint Functions

Blueprints

Get Claims: Input JWTToken FString token , Output TMap<FString,FString> Key,Value

Create JWT Verifier: Input Key FString Signing key , Algorithm UENUM Algorith , Output JWT Verifier Object ref

Create JWT Generator: Output JWT Generator Object ref

Verify Token

Verify

JWT Verifier object has a bunch of useful blueprints for claims verification and leeway

Verifier

Generate JWT Token

Generate

JWT Generator Has a lot of methods to add claims, time (iat,nbf,exp), and headers

Generator

Supported Algorithms

  • HS256
  • HS348
  • HS512
  • RS256
  • RS384
  • RS512

More to come soon!!