Full claim and metadata export as JSONEffortlessly convert any JWT into a structured JSON object—including standard claims (iat, exp, iss, etc.) and validation results. The output can be used for logging, integration, or parsed into a normalized OutSystems structure for further logic and UI binding.
iat
exp
iss
Create and validate JWTs using multiple algorithms (HS256, RS256, etc.)Supports both symmetric (shared secret) and asymmetric (RSA keys) encryption, including PEM/XML formats.
Flexible claim validation with smart wildcard matchingEasily check for specific values in claims like permissions, even when using hierarchical patterns such as abc.secure.write.*. The library understands dot-delimited structures and expands wildcards intelligently.
permissions
.secure.write.*
Decode and inspect tokens with access to all standard claimsIncludes support for issued-at (iat), expiration (exp), not-before (nbf), issuer (iss), audience (aud), and more.
nbf
aud
Unlike most JWT libraries, JWT Token Utils natively supports complex claim structures (nested objects and arrays). These are automatically flattened into safe, readable JSON strings—making them accessible even in low-code platforms or external systems that don’t natively handle nested data.
Bonus: Includes helper tools for testing and debugging at C# level.