Konubinix' opinionated web of thoughts

JSON Web Encryption

Fleeting

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)

https://datatracker.ietf.org/doc/html/rfc7516#section-3.1

Notes pointant ici