1 रिपॉजिटरी
Thread-safe, immutable token objects for concurrent JWT creation, parsing, and verification.
Distinct from Immutable: Distinct from general Immutable data structures: focuses on JWT token immutability for thread safety, not array or data structure immutability.
Explore 1 awesome GitHub repository matching data & databases · Tokens. Refine with filters or upvote what's useful.
This is a Java library for creating and verifying JSON Web Tokens (JWTs), supporting multiple cryptographic signing algorithms including HMAC, RSA, and ECDSA. The library provides a builder pattern for constructing tokens with custom claims and algorithm selection, and offers separate verification methods that check signatures and validate standard claims such as expiration, issuer, and audience. The library abstracts cryptographic algorithms behind a common interface, allowing pluggable signing and verification without coupling token creation to a specific algorithm. Tokens are represented a
Managing JWTs as immutable objects for thread-safe creation, parsing, and verification in concurrent environments.