Couldn't find much on this, Documentation is not clear enough, what I'm looking for is to be able to encode and decode a JWT token in a simple manner.
https://github.com/jwt-dotnet/jwt
Looking for something similar to Json web tokens. API authentication using json web tokens jwt-simple
int data = 123456;
// Encode
string AuthToken = JWT.Encode(data);
// Decode
int data = JWT.Decode(AuthToken)