Lianja
Lianja
Validate a .pkpass Archive
See more Digital Signatures Examples
Opens a .pkpass archive (which is just a .zip renamed to .pkpass) and validates the contents. The hashes in the manifest are compared with the computed hash values for each individual file. If all computed hash values match, then the signature is verified.Chilkat Lianja Downloads
llSuccess = .F.
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
loCrypt = createobject("CkCrypt2")
loZip = createobject("CkZip")
llSuccess = loZip.OpenZip("qa_data/pkpass/invalid.pkpass")
if (llSuccess = .F.) then
? loZip.LastErrorText
release loCrypt
release loZip
return
endif
// Get the contents of the manifest.json file, which contains something like this:
// {
// "icon.png" : "0296b01347b3173e98438a003b0e88986340b2d8",
// "logo.png" : "25de09e2d3b01ce1fe00c2ca9a90a2be1aaa05cf",
// "icon@2x.png" : "5afd9585b08c65fdf105a90c8bd643407cba2787",
// "pass.json" : "145ea5a5db784fff485126c77ecf7a1fc2a88ee7",
// "strip@2x.png" : "468fa7bc93e6b55342b56fda09bdce7c829d7d46",
// "strip.png" : "736d01f84cb73d06e8a9932e43076d68f19461ff"
// }
loEnt = createobject("CkZipEntry")
llSuccess = loZip.EntryOf("manifest.json",loEnt)
if (llSuccess = .F.) then
? loZip.LastErrorText
release loCrypt
release loZip
release loEnt
return
endif
// Get the exact content of the manifest.json for later signature verification.
loBdManifest = createobject("CkBinData")
llSuccess = loEnt.UnzipToBd(loBdManifest)
loJson = createobject("CkJsonObject")
loJson.EmitCompact = .F.
loJson.Load(loEnt.UnzipToString(0,"utf-8"))
? loJson.Emit()
// For each file in the JSON, get the filename and hex hash value.
loCrypt.EncodingMode = "hexlower"
loCrypt.HashAlgorithm = "sha1"
llSomeHashesFailed = .F.
loSbHashHex = createobject("CkStringBuilder")
loBdFileData = createobject("CkBinData")
lnNumMembers = loJson.Size
i = 0
do while i < lnNumMembers
lcFilename = loJson.NameAt(i)
loSbHashHex.Clear()
loSbHashHex.Append(loJson.StringAt(i))
llSuccess = loZip.EntryOf(lcFilename,loEnt)
if (llSuccess = .F.) then
? loZip.LastErrorText
release loCrypt
release loZip
release loEnt
release loBdManifest
release loJson
release loSbHashHex
release loBdFileData
return
endif
// Get the data for this file.
loBdFileData.Clear()
llSuccess = loEnt.UnzipToBd(loBdFileData)
lcComputedHashHex = loCrypt.HashBdENC(loBdFileData)
if (loSbHashHex.ContentsEqual(lcComputedHashHex,.F.) = .F.) then
? "Computed hash does not match stored hash for " + lcFilename
? " computed: " + lcComputedHashHex
? " stored: " + loSbHashHex.GetAsString()
llSomeHashesFailed = .T.
else
? "hash verified for " + lcFilename + "(" + lcComputedHashHex + ")"
endif
i = i + 1
enddo
if (llSomeHashesFailed = .T.) then
? "Some hashes failed."
release loCrypt
release loZip
release loEnt
release loBdManifest
release loJson
release loSbHashHex
release loBdFileData
return
endif
// Let's verify the signature..
// First get the signature.
llSuccess = loZip.EntryOf("signature",loEnt)
if (llSuccess = .F.) then
? loZip.LastErrorText
release loCrypt
release loZip
release loEnt
release loBdManifest
release loJson
release loSbHashHex
release loBdFileData
return
endif
loBdSignature = createobject("CkBinData")
llSuccess = loEnt.UnzipToBd(loBdSignature)
// Show the contents of the signature in base64 encoding.
? "Signature:"
? loBdSignature.GetEncoded("base64_mime")
? "----"
// Verify the signature against the manifest.json
loCrypt.EncodingMode = "base64"
llVerified = loCrypt.VerifyBdENC(loBdManifest,loBdSignature.GetEncoded("base64"))
if (llVerified = .F.) then
? loCrypt.LastErrorText
endif
? "signature verified = " + str(llVerified)
release loCrypt
release loZip
release loEnt
release loBdManifest
release loJson
release loSbHashHex
release loBdFileData
release loBdSignature