Chilkat Examples

ChilkatHOMEAndroid™Classic ASPCC++C#Mono C#.NET Core C#C# UWP/WinRTDataFlexDelphi ActiveXDelphi DLLVisual FoxProJavaLianjaMFCObjective-CPerlPHP ActiveXPHP ExtensionPowerBuilderPowerShellPureBasicCkPythonChilkat2-PythonRubySQL ServerSwift 2Swift 3,4,5...TclUnicode CUnicode C++Visual Basic 6.0VB.NETVB.NET UWP/WinRTVBScriptXojo PluginNode.jsExcelGo

Excel Examples

Web API Categories

ASN.1
Amazon EC2
Amazon Glacier
Amazon S3
Amazon S3 (new)
Amazon SES
Amazon SNS
Amazon SQS
Azure Cloud Storage
Azure Service Bus
Azure Table Service
Base64
Bounced Email
Box
CAdES
CSR
CSV
Certificates
Compression
DKIM / DomainKey
DSA
Diffie-Hellman
Digital Signatures
Dropbox
Dynamics CRM
EBICS
ECC
Ed25519
Email Object
Encryption
FTP
FileAccess
Firebase
GMail REST API
GMail SMTP/IMAP/POP
Geolocation
Google APIs
Google Calendar
Google Cloud SQL
Google Cloud Storage
Google Drive
Google Photos
Google Sheets
Google Tasks
Gzip
HTML-to-XML/Text
HTTP

HTTP Misc
IMAP
JSON
JSON Web Encryption (JWE)
JSON Web Signatures (JWS)
JSON Web Token (JWT)
Java KeyStore (JKS)
MHT / HTML Email
MIME
MS Storage Providers
Microsoft Graph
NTLM
OAuth1
OAuth2
OIDC
Office365
OneDrive
OpenSSL
Outlook
Outlook Calendar
Outlook Contact
PDF Signatures
PEM
PFX/P12
PKCS11
POP3
PRNG
REST
REST Misc
RSA
SCP
SCard
SFTP
SMTP
SSH
SSH Key
SSH Tunnel
ScMinidriver
SharePoint
Socket/SSL/TLS
Spider
Stream
Tar Archive
Upload
WebSocket
XAdES
XML
XML Digital Signatures
XMP
Zip
curl

 

 

 

(Excel) JWE with Binary Data

Demonstrates how to create a JWE that contains a binary payload (such as a JPG image).

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

Download Excel Class Modules

Chilkat Excel Class Modules

' 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.

' Load a JPG file that will be the JWE payload.
Dim jpgBytes As Chilkat.BinData
Set jpgBytes = Chilkat.NewBinData
success = jpgBytes.LoadFile("qa_data/jpg/starfish.jpg")
' Make sure your app checks the success/failure of the call to LoadFile..
Debug.Print "Original JPG size = "; jpgBytes.NumBytes

Dim jwe As Chilkat.Jwe
Set jwe = Chilkat.NewJwe

Dim jweProtHdr As Chilkat.JsonObject
Set jweProtHdr = Chilkat.NewJsonObject
Dim success As Boolean
success = jweProtHdr.AppendString("alg","A128KW")
success = jweProtHdr.AppendString("enc","A128CBC-HS256")
success = jwe.SetProtectedHeader(jweProtHdr)


aesWrappingKey = "GawgguFyGrWKav7AX4VKUg"
success = jwe.SetWrappingKey(0,aesWrappingKey,"base64url")

' Encrypt and return the JWE in sbJwe:
Dim sbJwe As Chilkat.StringBuilder
Set sbJwe = Chilkat.NewStringBuilder
success = jwe.EncryptBd(jpgBytes,sbJwe)
If (success <> True) Then
    Debug.Print jwe.LastErrorText
    Exit Sub
End If

' Show the JWE:
Debug.Print sbJwe.GetAsString()
Debug.Print "size of JWE: "; sbJwe.Length

' ---------------------------------------------------------
' Decrypt to get the original JPG file..

Dim jwe2 As Chilkat.Jwe
Set jwe2 = Chilkat.NewJwe
success = jwe2.LoadJweSb(sbJwe)
If (success <> True) Then
    Debug.Print jwe2.LastErrorText
    Exit Sub
End If

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

' Decrypt.
Dim jpgOriginal As Chilkat.BinData
Set jpgOriginal = Chilkat.NewBinData
success = jwe2.DecryptBd(0,jpgOriginal)
If (success <> True) Then
    Debug.Print jwe2.LastErrorText
    Exit Sub
End If

Debug.Print "Decrypted JPG size = "; jpgOriginal.NumBytes

' Save the decrypted JPG to a file.
success = jpgOriginal.WriteFile("qa_output/jwe_decrypted_starfish.jpg")

Debug.Print "success = "; success

' The output of this program, when tested, was:
' Original JPG size = 6229
' eyJhbGciOiJBMTI4S1ciLCJlbmMiOiJBMTI4Q0JDLUhTMjU2In0.9YFz_wteV ... 7Et3hKhpxnKEXw
' size of JWE: 8473
' Decrypted JPG size = 6229
' success = True

 

© 2000-2022 Chilkat Software, Inc. All Rights Reserved.