B4X
B4X
Get the Entire Loaded JWE Structure
See more JSON Web Encryption (JWE) Examples
Demonstrates Jwe.GetHeader, which copies the entire currently loaded JWE structure into a JsonObject.
Background. This is the full JWE representation, not a decoded or merged JOSE header. It can contain the protected, unprotected, and per-recipient header material.
Chilkat B4X Downloads
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 entire loaded JWE structure into a JsonObject. This is the full JWE representation, not a
' decoded or merged JOSE header.
Dim json As ChilkatJsonObject
json.Initialize
success = jwe.GetHeader(json)
If success = False Then
Log(jwe.LastErrorText)
Return
End If
json.EmitCompact = False
Log(json.Emit)