Sample code for 30+ languages & platforms
B4X

Get the JWE Protected Header

See more JSON Web Encryption (JWE) Examples

Demonstrates Jwe.GetProtectedHeader, which copies the decoded shared JWE protected header into a JsonObject.

Background. Only the protected header is returned; it is not merged with the shared unprotected header or any per-recipient header.

Chilkat B4X Downloads

B4X
Dim success As Boolean = False

Dim jwe As ChilkatJwe
jwe.Initialize

'  Load the JWE.
Dim jweCompact As String = "eyJhbGciOiJBMjU2S1ciLCJlbmMiOiJBMjU2R0NNIn0.<...>.<iv>.<ciphertext>.<tag>"
success = jwe.LoadJwe(jweCompact)
If success = False Then
    Log(jwe.LastErrorText)
    Return
End If


'  Copy the decoded shared JWE protected header into a JsonObject.  Only the protected header is
'  returned; it is not merged with the unprotected or per-recipient headers.
Dim json As ChilkatJsonObject
json.Initialize
success = jwe.GetProtectedHeader(json)
If success = False Then
    Log(jwe.LastErrorText)
    Return
End If


json.EmitCompact = False
Log(json.Emit)