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

Tcl 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
uncategorized

 

 

 

(Tcl) Sign Manifest File to Generate a Passbook .pkpass file

Demonstrates how to create a Passbook .pkpass archive by creating a signature of a manifest file and then zipping to a .pkpass archive.

Note: Chilkat also has the capability to do everything in-memory (no files would be involved). If this is of interest, please send email to support@chilkatsoft.com

Note: This example requires Chilkat v9.5.0.75.

Chilkat Tcl Extension Downloads

Chilkat Tcl Extension Downloads

load ./chilkat.dll

# Note: Requires Chilkat v9.5.0.75 or greater.

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

# ---------------------------------------------------------------------------------------------
# Note: Chilkat also has the capability to do everything in-memory (no files would be involved).  
# See this example:  Sign Manifest File to Generate a Passbook .pkpass in Memory
# ---------------------------------------------------------------------------------------------

# First create the manifest.json

set manifest [new_CkJsonObject]

set crypt [new_CkCrypt2]

set zip [new_CkZip]

CkZip_NewZip $zip "qa_data/p7s/pass-wallet/example.pkpass"
# Set the AppendFromDir property to prevent that relative paths from being stored in the .pkpass archive.
CkZip_put_AppendFromDir $zip "qa_data/p7s/pass-wallet/"

CkCrypt2_put_HashAlgorithm $crypt "sha1"
# Return hashes as lowercase hex.
CkCrypt2_put_EncodingMode $crypt "hexlower"

set filePath "qa_data/p7s/pass-wallet/icon.png"
set fileHash [CkCrypt2_hashFileENC $crypt $filePath]
CkZip_AppendOneFileOrDir $zip "icon.png" 0
CkJsonObject_UpdateString $manifest "\"icon.png\"" $fileHash

set filePath "qa_data/p7s/pass-wallet/icon@2x.png"
set fileHash [CkCrypt2_hashFileENC $crypt $filePath]
CkZip_AppendOneFileOrDir $zip "icon@2x.png" 0
CkJsonObject_UpdateString $manifest "\"icon@2x.png\"" $fileHash

set filePath "qa_data/p7s/pass-wallet/logo.png"
set fileHash [CkCrypt2_hashFileENC $crypt $filePath]
CkZip_AppendOneFileOrDir $zip "logo.png" 0
CkJsonObject_UpdateString $manifest "\"logo.png\"" $fileHash

set filePath "qa_data/p7s/pass-wallet/logo@2x.png"
set fileHash [CkCrypt2_hashFileENC $crypt $filePath]
CkZip_AppendOneFileOrDir $zip "logo@2x.png" 0
CkJsonObject_UpdateString $manifest "\"logo@2x.png\"" $fileHash

set filePath "qa_data/p7s/pass-wallet/pass.json"
set fileHash [CkCrypt2_hashFileENC $crypt $filePath]
CkZip_AppendOneFileOrDir $zip "pass.json" 0
CkJsonObject_UpdateString $manifest "\"pass.json\"" $fileHash

set sbJson [new_CkStringBuilder]

CkJsonObject_EmitSb $manifest $sbJson
set manifestPath "qa_data/p7s/pass-wallet/manifest.json"
CkStringBuilder_WriteFile $sbJson $manifestPath "utf-8" 0
CkZip_AppendOneFileOrDir $zip "manifest.json" 0

# Make sure we have the Apple WWDR intermediate certificate available for 
# the cert chain in the signature.
set certVault [new_CkXmlCertVault]

set appleWwdrCert [new_CkCert]

set success [CkCert_LoadByCommonName $appleWwdrCert "Apple Worldwide Developer Relations Certification Authority"]
if {$success != 1} then {
    puts "The Apple WWDR intermediate certificate is not installed."
    puts "It is available at https://developer.apple.com/certificationauthority/AppleWWDRCA.cer"
    puts "You may alternatively load the .cer like this..."
    set success [CkCert_LoadFromFile $appleWwdrCert "qa_data/certs/AppleWWDRCA.cer"]
    if {$success != 1} then {
        puts [CkCert_lastErrorText $appleWwdrCert]
        delete_CkJsonObject $manifest
        delete_CkCrypt2 $crypt
        delete_CkZip $zip
        delete_CkStringBuilder $sbJson
        delete_CkXmlCertVault $certVault
        delete_CkCert $appleWwdrCert
        exit
    }

}

CkXmlCertVault_AddCert $certVault $appleWwdrCert
CkCrypt2_UseCertVault $crypt $certVault

# Use a digital certificate and private key from a PFX file (.pfx or .p12).
set pfxPath "qa_data/pfx/cert_test123.pfx"
set pfxPassword "test123"

set cert [new_CkCert]

set success [CkCert_LoadPfxFile $cert $pfxPath $pfxPassword]
if {$success != 1} then {
    puts [CkCert_lastErrorText $cert]
    delete_CkJsonObject $manifest
    delete_CkCrypt2 $crypt
    delete_CkZip $zip
    delete_CkStringBuilder $sbJson
    delete_CkXmlCertVault $certVault
    delete_CkCert $appleWwdrCert
    delete_CkCert $cert
    exit
}

# Provide the signing cert (with associated private key).
set success [CkCrypt2_SetSigningCert $crypt $cert]
if {$success != 1} then {
    puts [CkCrypt2_lastErrorText $crypt]
    delete_CkJsonObject $manifest
    delete_CkCrypt2 $crypt
    delete_CkZip $zip
    delete_CkStringBuilder $sbJson
    delete_CkXmlCertVault $certVault
    delete_CkCert $appleWwdrCert
    delete_CkCert $cert
    exit
}

# Specify the signed attributes to be included.
# (These attributes appear to not be necessary, but we're including
# them just in case they become necessary in the future.)
set jsonSignedAttrs [new_CkJsonObject]

CkJsonObject_UpdateInt $jsonSignedAttrs "contentType" 1
CkJsonObject_UpdateInt $jsonSignedAttrs "signingTime" 1
CkCrypt2_put_SigningAttributes $crypt [CkJsonObject_emit $jsonSignedAttrs]

# Sign the manifest JSON file to produce a file named "signature".
set sigPath "qa_data/p7s/pass-wallet/signature"

# Create the "signature" file.
set success [CkCrypt2_CreateP7S $crypt $manifestPath $sigPath]
if {$success == 0} then {
    puts [CkCrypt2_lastErrorText $crypt]
    delete_CkJsonObject $manifest
    delete_CkCrypt2 $crypt
    delete_CkZip $zip
    delete_CkStringBuilder $sbJson
    delete_CkXmlCertVault $certVault
    delete_CkCert $appleWwdrCert
    delete_CkCert $cert
    delete_CkJsonObject $jsonSignedAttrs
    exit
}

CkZip_AppendOneFileOrDir $zip "signature" 0

# ---------------------------------------------------------------------------------------------
# Note: Chilkat also has the capability to do everything in-memory (no files would be involved).  
# If this is of interest, please send email to support@chilkatsoft.com
# ---------------------------------------------------------------------------------------------

# Create the .pkipass archive (which is a .zip archive containing the required files).
set success [CkZip_WriteZipAndClose $zip]
if {$success != 1} then {
    puts [CkZip_lastErrorText $zip]
    delete_CkJsonObject $manifest
    delete_CkCrypt2 $crypt
    delete_CkZip $zip
    delete_CkStringBuilder $sbJson
    delete_CkXmlCertVault $certVault
    delete_CkCert $appleWwdrCert
    delete_CkCert $cert
    delete_CkJsonObject $jsonSignedAttrs
    exit
}

puts "Success."

delete_CkJsonObject $manifest
delete_CkCrypt2 $crypt
delete_CkZip $zip
delete_CkStringBuilder $sbJson
delete_CkXmlCertVault $certVault
delete_CkCert $appleWwdrCert
delete_CkCert $cert
delete_CkJsonObject $jsonSignedAttrs

 

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