Create and sign JWT tokens using HMAC/Base64
JSON Web Tokens (JWT) are an open standard for securely transmitting information between parties. A JWT consists of three parts: Header (algorithm & type), Payload (claims), and Signature (verification). Used extensively in authentication, API authorization, and single sign-on.