Swift
Swift
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 Swift Downloads
func chilkatTest() {
var success: Bool = false
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
let crypt = CkoCrypt2()!
let zip = CkoZip()!
success = zip.open(zipPath: "qa_data/pkpass/invalid.pkpass")
if success == false {
print("\(zip.lastErrorText!)")
return
}
// 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"
// }
let ent = CkoZipEntry()!
success = zip.entry(of: "manifest.json", entry: ent)
if success == false {
print("\(zip.lastErrorText!)")
return
}
// Get the exact content of the manifest.json for later signature verification.
let bdManifest = CkoBinData()!
success = ent.unzip(toBd: bdManifest)
let json = CkoJsonObject()!
json.emitCompact = false
json.load(json: ent.unzip(toString: 0, srcCharset: "utf-8"))
print("\(json.emit()!)")
// For each file in the JSON, get the filename and hex hash value.
crypt.encodingMode = "hexlower"
crypt.hashAlgorithm = "sha1"
var someHashesFailed: Bool = false
var filename: String?
let sbHashHex = CkoStringBuilder()!
let bdFileData = CkoBinData()!
var numMembers: Int = json.size.intValue
var i: Int = 0
while i < numMembers {
filename = json.name(at: i)
sbHashHex.clear()
sbHashHex.append(value: json.string(at: i))
success = zip.entry(of: filename, entry: ent)
if success == false {
print("\(zip.lastErrorText!)")
return
}
// Get the data for this file.
bdFileData.clear()
success = ent.unzip(toBd: bdFileData)
var computedHashHex: String? = crypt.hashBdENC(bd: bdFileData)
if sbHashHex.contentsEqual(str: computedHashHex, caseSensitive: false) == false {
print("Computed hash does not match stored hash for \(filename!)")
print(" computed: \(computedHashHex!)")
print(" stored: \(sbHashHex.getAsString()!)")
someHashesFailed = true
}
else {
print("hash verified for \(filename!)(\(computedHashHex!))")
}
i = i + 1
}
if someHashesFailed == true {
print("Some hashes failed.")
return
}
// Let's verify the signature..
// First get the signature.
success = zip.entry(of: "signature", entry: ent)
if success == false {
print("\(zip.lastErrorText!)")
return
}
let bdSignature = CkoBinData()!
success = ent.unzip(toBd: bdSignature)
// Show the contents of the signature in base64 encoding.
print("Signature:")
print("\(bdSignature.getEncoded(encoding: "base64_mime")!)")
print("----")
// Verify the signature against the manifest.json
crypt.encodingMode = "base64"
var verified: Bool = crypt.verifyBdENC(data: bdManifest, encodedSig: bdSignature.getEncoded(encoding: "base64"))
if verified == false {
print("\(crypt.lastErrorText!)")
}
print("signature verified = \(verified)")
}