Packages

Gleam implementation of JOSE (JWS, JWE, JWK, JWT) and COSE (COSE_Sign, COSE_Encrypt, COSE_Mac0, CWT) standards

Current section

Files

Jump to
gose include gose@jose@encrypted_jwt_EncryptedJwt.hrl
Raw

include/gose@jose@encrypted_jwt_EncryptedJwt.hrl

-record(encrypted_jwt, {
alg :: gose:key_encryption_alg(),
enc :: gose:content_alg(),
kid :: gleam@option:option(binary()),
claims :: gose@jose@jwt:claims(),
claims_json :: bitstring(),
token :: binary()
}).