1 个仓库
Pure functions for inserting, deleting, or updating elements in an array to produce a new array.
Distinct from Array Element Modifiers: Focuses on immutable functional updates rather than large-scale dataset indexing syntax.
Explore 1 awesome GitHub repository matching data & databases · Immutable. 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.