JSON Web Encryption
Fleeting- Référence externe : https://datatracker.ietf.org/doc/html/rfc7516#section-3.1
- Référence externe : https://datatracker.ietf.org/doc/html/rfc7516
In the JWE Compact Serialization, a JWE is represented as the concatenation:
- BASE64URL(UTF8(JWE Protected Header)) || ‘.’ ||
- BASE64URL(JWE Encrypted Key) || ‘.’ ||
- BASE64URL(JWE Initialization Vector) || ‘.’ ||
- BASE64URL(JWE Ciphertext) || ‘.’ ||
- BASE64URL(JWE Authentication Tag)
Notes pointant ici
- JOSE header
- JSON web tokens
- playing with auth0 for the first time
- reference token vs self-encoded access token
- self-encoded access tokens
- should I say JWT or JWT token, or JWS token or…? (blog)
- using a bearer token encoded in JWT format? (blog)
- using id token as access token?