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
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
JWT Verifier object has a bunch of useful blueprints for claims verification and leeway
JWT Generator Has a lot of methods to add claims, time (iat,nbf,exp), and headers
- HS256
- HS348
- HS512
- RS256
- RS384
- RS512
More to come soon!!