JWS and JWE
JSON Web Signature (JWS)
<Header>.<Payload>.<Signature>{
"alg": "ES256",
"kid": "d591e152-886e-46cc-aa70-36a4431162a6",
"typ": "JWT"
}JSON Web Encryption (JWE)
Last updated
<Header>.<Payload>.<Signature>{
"alg": "ES256",
"kid": "d591e152-886e-46cc-aa70-36a4431162a6",
"typ": "JWT"
}Last updated
<Protected Header>.<Encrypted Key>.<IV>.<Ciphertext>.<Authentication Tag>{
"alg": "ECDH-ES+A256KW",
"kid": "nxiJJNNVxxnTkU2wL65TI2PkILIJOURSTQSABLuH2kE",
"enc": "A256CBC-HS512",
"typ": "JWT"
}