Chilkat Examples

ChilkatHOME.NET Core C#Android™AutoItCC#C++Chilkat2-PythonCkPythonClassic ASPDataFlexDelphi ActiveXDelphi DLLGoJavaLianjaMono C#Node.jsObjective-CPHP ActiveXPHP ExtensionPerlPowerBuilderPowerShellPureBasicRubySQL ServerSwift 2Swift 3,4,5...TclUnicode CUnicode C++VB.NETVBScriptVisual Basic 6.0Visual FoxProXojo Plugin

Visual FoxPro Examples

Web API Categories

ASN.1
AWS KMS
AWS Misc
Amazon EC2
Amazon Glacier
Amazon S3
Amazon S3 (new)
Amazon SES
Amazon SNS
Amazon SQS
Async
Azure Cloud Storage
Azure Key Vault
Azure Service Bus
Azure Table Service
Base64
Bounced Email
Box
CAdES
CSR
CSV
Certificates
Code Signing
Compression
DKIM / DomainKey
DNS
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
Misc
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
SharePoint Online
Signing in the Cloud
Socket/SSL/TLS
Spider
Stream
Tar Archive
ULID/UUID
Upload
WebSocket
XAdES
XML
XML Digital Signatures
XMP
Zip
curl

 

 

 

(Visual FoxPro) AES Key Wrap / Unwrap

Demonstrates the AesKeyWrap and AesKeyUnwrap methods that were added to Chilkat v9.5.0.66.

This example implements the AES Key Wrap Algorithm as described in RFC 3394. It demonstrates wrapping and unwrapping the test data provided in the RFC. This example requires Chilkat v9.5.0.66 or later.

Chilkat ActiveX Downloads

ActiveX for 32-bit and 64-bit Windows

LOCAL loCrypt
LOCAL lcKek
LOCAL lcKeyData
LOCAL lcWrappedKey
LOCAL lcExpected
LOCAL lcUnwrappedKey
LOCAL lcEncoding

* This example assumes 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 later.

loCrypt = CreateObject('Chilkat_9_5_0.Crypt2')

* The KEK is the Key Encryption Key.  It's the AES key that is used
* to wrap another AES key which is called the "Key Data".

* The KEK can be 128-bit, 192-bit, or 256-bit.  
* (In other words, it can be 16 bytes, 24 bytes, or 32 bytes)

* The Key Data must be a multiple of 64-bits in length.  (i.e. a multiple of 8 bytes)
* The AES Key Wrap algorithm can wrap not only AES keys, but any data that is a
* multiple of 8 bytes in size.

lcEncoding = "hex"

* Use a 128-bit KEK to wrap a 128-bit AES key.
lcKek = "000102030405060708090A0B0C0D0E0F"
lcKeyData = "00112233445566778899AABBCCDDEEFF"
lcExpected = "1FA68B0A8112B447AEF34BD8FB5A7B829D3E862371D2CFE5"

? "---- Use a 128-bit KEK to wrap a 128-bit AES key."
? "kek = " + lcKek
? "keyData = " + lcKeyData
? "expected = " + lcExpected
lcWrappedKey = loCrypt.AesKeyWrap(lcKek,lcKeyData,lcEncoding)
? "computed = " + lcWrappedKey
lcUnwrappedKey = loCrypt.AesKeyUnwrap(lcKek,lcWrappedKey,lcEncoding)
? "unwrapped = " + lcUnwrappedKey
? "----"

* Use a 192-bit KEK to wrap a 128-bit AES key.
lcKek = "000102030405060708090A0B0C0D0E0F1011121314151617"
lcKeyData = "00112233445566778899AABBCCDDEEFF"
lcExpected = "96778B25AE6CA435F92B5B97C050AED2468AB8A17AD84E5D"

? "---- Use a 192-bit KEK to wrap a 128-bit AES key."
? "kek = " + lcKek
? "keyData = " + lcKeyData
? "expected = " + lcExpected
lcWrappedKey = loCrypt.AesKeyWrap(lcKek,lcKeyData,lcEncoding)
? "computed = " + lcWrappedKey
lcUnwrappedKey = loCrypt.AesKeyUnwrap(lcKek,lcWrappedKey,lcEncoding)
? "unwrapped = " + lcUnwrappedKey
? "----"

* Use a 256-bit KEK to wrap a 128-bit AES key.
lcKek = "000102030405060708090A0B0C0D0E0F101112131415161718191A1B1C1D1E1F"
lcKeyData = "00112233445566778899AABBCCDDEEFF"
lcExpected = "64E8C3F9CE0F5BA263E9777905818A2A93C8191E7D6E8AE7"

? "---- Use a 256-bit KEK to wrap a 128-bit AES key."
? "kek = " + lcKek
? "keyData = " + lcKeyData
? "expected = " + lcExpected
lcWrappedKey = loCrypt.AesKeyWrap(lcKek,lcKeyData,lcEncoding)
? "computed = " + lcWrappedKey
lcUnwrappedKey = loCrypt.AesKeyUnwrap(lcKek,lcWrappedKey,lcEncoding)
? "unwrapped = " + lcUnwrappedKey
? "----"

* Use a 192-bit KEK to wrap a 192-bit AES key.
lcKek = "000102030405060708090A0B0C0D0E0F1011121314151617"
lcKeyData = "00112233445566778899AABBCCDDEEFF0001020304050607"
lcExpected = "031D33264E15D33268F24EC260743EDCE1C6C7DDEE725A936BA814915C6762D2"

? "---- Use a 192-bit KEK to wrap a 192-bit AES key."
? "kek = " + lcKek
? "keyData = " + lcKeyData
? "expected = " + lcExpected
lcWrappedKey = loCrypt.AesKeyWrap(lcKek,lcKeyData,lcEncoding)
? "computed = " + lcWrappedKey
lcUnwrappedKey = loCrypt.AesKeyUnwrap(lcKek,lcWrappedKey,lcEncoding)
? "unwrapped = " + lcUnwrappedKey
? "----"

* Use a 256-bit KEK to wrap a 192-bit AES key.
lcKek = "000102030405060708090A0B0C0D0E0F101112131415161718191A1B1C1D1E1F"
lcKeyData = "00112233445566778899AABBCCDDEEFF0001020304050607"
lcExpected = "A8F9BC1612C68B3FF6E6F4FBE30E71E4769C8B80A32CB8958CD5D17D6B254DA1"

? "---- Use a 256-bit KEK to wrap a 192-bit AES key."
? "kek = " + lcKek
? "keyData = " + lcKeyData
? "expected = " + lcExpected
lcWrappedKey = loCrypt.AesKeyWrap(lcKek,lcKeyData,lcEncoding)
? "computed = " + lcWrappedKey
lcUnwrappedKey = loCrypt.AesKeyUnwrap(lcKek,lcWrappedKey,lcEncoding)
? "unwrapped = " + lcUnwrappedKey
? "----"

* Use a 256-bit KEK to wrap a 256-bit AES key.
lcKek = "000102030405060708090A0B0C0D0E0F101112131415161718191A1B1C1D1E1F"
lcKeyData = "00112233445566778899AABBCCDDEEFF000102030405060708090A0B0C0D0E0F"
lcExpected = "28C9F404C4B810F4CBCCB35CFB87F8263F5786E2D80ED326CBC7F0E71A99F43BFB988B9B7A02DD21"

? "---- Use a 256-bit KEK to wrap a 256-bit AES key."
? "kek = " + lcKek
? "keyData = " + lcKeyData
? "expected = " + lcExpected
lcWrappedKey = loCrypt.AesKeyWrap(lcKek,lcKeyData,lcEncoding)
? "computed = " + lcWrappedKey
lcUnwrappedKey = loCrypt.AesKeyUnwrap(lcKek,lcWrappedKey,lcEncoding)
? "unwrapped = " + lcUnwrappedKey
? "----"

* The output:
* 
* 	---- Use a 128-bit KEK to wrap a 128-bit AES key.
* 	kek = 000102030405060708090A0B0C0D0E0F
* 	keyData = 00112233445566778899AABBCCDDEEFF
* 	expected = 1FA68B0A8112B447AEF34BD8FB5A7B829D3E862371D2CFE5
* 	computed = 1FA68B0A8112B447AEF34BD8FB5A7B829D3E862371D2CFE5
* 	unwrapped = 00112233445566778899AABBCCDDEEFF
* 	----
* 	---- Use a 192-bit KEK to wrap a 128-bit AES key.
* 	kek = 000102030405060708090A0B0C0D0E0F1011121314151617
* 	keyData = 00112233445566778899AABBCCDDEEFF
* 	expected = 96778B25AE6CA435F92B5B97C050AED2468AB8A17AD84E5D
* 	computed = 96778B25AE6CA435F92B5B97C050AED2468AB8A17AD84E5D
* 	unwrapped = 00112233445566778899AABBCCDDEEFF
* 	----
* 	---- Use a 256-bit KEK to wrap a 128-bit AES key.
* 	kek = 000102030405060708090A0B0C0D0E0F101112131415161718191A1B1C1D1E1F
* 	keyData = 00112233445566778899AABBCCDDEEFF
* 	expected = 64E8C3F9CE0F5BA263E9777905818A2A93C8191E7D6E8AE7
* 	computed = 64E8C3F9CE0F5BA263E9777905818A2A93C8191E7D6E8AE7
* 	unwrapped = 00112233445566778899AABBCCDDEEFF
* 	----
* 	---- Use a 192-bit KEK to wrap a 192-bit AES key.
* 	kek = 000102030405060708090A0B0C0D0E0F1011121314151617
* 	keyData = 00112233445566778899AABBCCDDEEFF0001020304050607
* 	expected = 031D33264E15D33268F24EC260743EDCE1C6C7DDEE725A936BA814915C6762D2
* 	computed = 031D33264E15D33268F24EC260743EDCE1C6C7DDEE725A936BA814915C6762D2
* 	unwrapped = 00112233445566778899AABBCCDDEEFF0001020304050607
* 	----
* 	---- Use a 256-bit KEK to wrap a 192-bit AES key.
* 	kek = 000102030405060708090A0B0C0D0E0F101112131415161718191A1B1C1D1E1F
* 	keyData = 00112233445566778899AABBCCDDEEFF0001020304050607
* 	expected = A8F9BC1612C68B3FF6E6F4FBE30E71E4769C8B80A32CB8958CD5D17D6B254DA1
* 	computed = A8F9BC1612C68B3FF6E6F4FBE30E71E4769C8B80A32CB8958CD5D17D6B254DA1
* 	unwrapped = 00112233445566778899AABBCCDDEEFF0001020304050607
* 	----
* 	---- Use a 256-bit KEK to wrap a 256-bit AES key.
* 	kek = 000102030405060708090A0B0C0D0E0F101112131415161718191A1B1C1D1E1F
* 	keyData = 00112233445566778899AABBCCDDEEFF000102030405060708090A0B0C0D0E0F
* 	expected = 28C9F404C4B810F4CBCCB35CFB87F8263F5786E2D80ED326CBC7F0E71A99F43BFB988B9B7A02DD21
* 	computed = 28C9F404C4B810F4CBCCB35CFB87F8263F5786E2D80ED326CBC7F0E71A99F43BFB988B9B7A02DD21
* 	unwrapped = 00112233445566778899AABBCCDDEEFF000102030405060708090A0B0C0D0E0F
* 	----
* 

RELEASE loCrypt


 

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