Sample code for 30+ languages & platforms
B4X

JWE Using Flattened JWE JSON Serialization

See more JSON Web Encryption (JWE) Examples

This example duplicates the example A.5 in RFC 7516 for JSON Web Encryption (JWE).

This example demonstrates using the flattened JWE JSON Serialization syntax. This example demonstrates the capability for encrypting the plaintext to a single recipient in a flattened JSON structure.

Note: This example requires Chilkat v9.5.0.66 or greater.

Chilkat B4X Downloads

B4X
Dim success As Boolean = False

'  This requires the Chilkat API to have been previously unlocked.
'  See Global Unlock Sample for sample code.

'  Note: This example requires Chilkat v9.5.0.66 or greater.

Dim plaintext As String = "Live long and prosper."

Dim jwe As ChilkatJwe
jwe.Initialize

'  First build the JWE Protected Header: {"enc":"A128CBC-HS256"}
Dim jweProtHdr As ChilkatJsonObject
jweProtHdr.Initialize
jweProtHdr.AppendString("enc", "A128CBC-HS256")
jwe.SetProtectedHeader(jweProtHdr)

'  We have a single recipient that uses AES Key Wrap to encrypt the CEK.
'  
'       {"alg":"A128KW","kid":"7"}

Dim jweRecipientHdr As ChilkatJsonObject
jweRecipientHdr.Initialize
jweRecipientHdr.AppendString("alg", "A128KW")
jweRecipientHdr.AppendString("kid", "7")
Dim recipientIndex As Int = 0
jwe.SetRecipientHeader(recipientIndex, jweRecipientHdr)

'  Set the Shared Unprotected Header:  {"jku":"https://server.example.com/keys.jwks"}
Dim jweUnprotHdr As ChilkatJsonObject
jweUnprotHdr.Initialize
jweUnprotHdr.AppendString("jku", "https://server.example.com/keys.jwks")
jwe.SetUnprotectedHeader(jweUnprotHdr)

'  Set the AES key wrapping key.
Dim aesWrappingKey As String = "GawgguFyGrWKav7AX4VKUg"
recipientIndex = 0
jwe.SetWrappingKey(recipientIndex, aesWrappingKey, "base64url")

'  OK.. everything has been specified.
'  Now encrypt.  
'  Indicate that we prefer the flattened JSON serialization.
jwe.PreferFlattened = True
Dim strJwe As String = jwe.Encrypt(plaintext, "utf-8")
If jwe.LastMethodSuccess <> True Then
    Log(jwe.LastErrorText)
    Return
End If


'  The JWE is produced in the most compact form possible (a single line).
'  Let's load it into a JSON object and examine in a non-compact pretty-printed format:
Dim jsonTemp As ChilkatJsonObject
jsonTemp.Initialize
jsonTemp.Load(strJwe)
jsonTemp.EmitCompact = False
Log(jsonTemp.Emit)

'  The JWE looks like this:
'  (Note: Because of random values used in the encryption process, your encrypted results will be different.)

'  	{ 
'  	  "protected": "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2In0",
'  	  "unprotected": { 
'  	    "jku": "https://server.example.com/keys.jwks"
'  	  },
'  	  "header": { 
'  	    "alg": "A128KW",
'  	    "kid": "7"
'  	  },
'  	  "encrypted_key": "FW7z9VxOvnF2ClicvUT4HTeqcdyh90C6qytfEFJsOb77FOwTfYrc3w",
'  	  "iv": "O6Ly5-eML3zTs-_fNX3D5Q",
'  	  "ciphertext": "Q8NLmeac9JhLh0CQPuG_7D9wVDb55eToCh0g5-FQ4M0",
'  	  "tag": "slzlo6-J9C7wSDF4dh_kBg"
'  	} 

'  Now decrypt......................................

'  First, load the JWE..
Dim jwe2 As ChilkatJwe
jwe2.Initialize
success = jwe2.LoadJwe(strJwe)
If success <> True Then
    Log(jwe2.LastErrorText)
    Return
End If


'  Set the AES wrap key..
recipientIndex = 0
jwe2.SetWrappingKey(recipientIndex, aesWrappingKey, "base64url")

'  Decrypt
Dim originalPlaintext As String = jwe2.Decrypt(recipientIndex, "utf-8")
If jwe2.LastMethodSuccess <> True Then
    Log(jwe2.LastErrorText)
    Return
End If


Log("original text decrypted with AES key wrap key: ")
Log(originalPlaintext)

'  ---------------------------------------------------------------------------------
'  It should also be possible to decrypt the flattened JWE as shown in RFC 7516, Appendix A.5
'  because it was produced using the same key.

Dim sbJwe As ChilkatStringBuilder
sbJwe.Initialize

sbJwe.Append("{")
sbJwe.Append(Chr(34) & "protected" & Chr(34) & ":")
sbJwe.Append(Chr(34) & "eyJlbmMiOiJBMTI4Q0JDLUhTMjU2In0" & Chr(34) & ",")
sbJwe.Append(Chr(34) & "unprotected" & Chr(34) & ":")
sbJwe.Append("{" & Chr(34) & "jku" & Chr(34) & ":" & Chr(34) & "https://server.example.com/keys.jwks" & Chr(34) & "},")
sbJwe.Append(Chr(34) & "header" & Chr(34) & ":")
sbJwe.Append("{" & Chr(34) & "alg" & Chr(34) & ":" & Chr(34) & "A128KW" & Chr(34) & "," & Chr(34) & "kid" & Chr(34) & ":" & Chr(34) & "7" & Chr(34) & "},")
sbJwe.Append(Chr(34) & "encrypted_key" & Chr(34) & ":")
sbJwe.Append(Chr(34) & "6KB707dM9YTIgHtLvtgWQ8mKwboJW3of9locizkDTHzBC2IlrT1oOQ" & Chr(34) & ",")
sbJwe.Append(Chr(34) & "iv" & Chr(34) & ":")
sbJwe.Append(Chr(34) & "AxY8DCtDaGlsbGljb3RoZQ" & Chr(34) & ",")
sbJwe.Append(Chr(34) & "ciphertext" & Chr(34) & ":")
sbJwe.Append(Chr(34) & "KDlTtXchhZTGufMYmOYGS4HffxPSUrfmqCHXaI9wOGY" & Chr(34) & ",")
sbJwe.Append(Chr(34) & "tag" & Chr(34) & ":")
sbJwe.Append(Chr(34) & "Mz-VPPyU4RlcuYv1IwIvzw" & Chr(34))
sbJwe.Append("}")

success = jwe2.LoadJweSb(sbJwe)
If success <> True Then
    Log(jwe2.LastErrorText)
    Return
End If


recipientIndex = 0
jwe2.SetWrappingKey(recipientIndex, aesWrappingKey, "base64url")

originalPlaintext = jwe2.Decrypt(recipientIndex, "utf-8")
If jwe2.LastMethodSuccess <> True Then
    Log(jwe2.LastErrorText)
    Return
End If


Log("original text decrypted from published flattened JWE: ")
Log(originalPlaintext)

'  The output:

'  original text decrypted with AES key wrap key: 
'  Live long and prosper.
'  original text decrypted from published flattened JWE: 
'  Live long and prosper.