Swift
Swift
Find a JWE Recipient by Header Value
See more JSON Web Encryption (JWE) Examples
Demonstrates Jwe.FindRecipient, which searches the per-recipient unprotected headers for a member with a given name and string value, and returns the matching recipient index.
The file path is relative to the application's current working directory. An absolute path may also be used. Supply the path appropriate to your own environment.
Background. This locates the recipient that a particular key belongs to (for example by
kid) before decrypting. The method returns -1 when no match is found.Chilkat Swift Downloads
func chilkatTest() {
var success: Bool = false
let jwe = CkoJwe()!
// The file path is relative to the application's current working directory. An absolute path
// may also be used. Supply the path appropriate to your own environment.
// Load a multi-recipient JWE (JSON serialization) from a file.
let sbJwe = CkoStringBuilder()!
var bLoaded: Bool = sbJwe.loadFile(path: "qa_data/message.jwe", charset: "utf-8")
if bLoaded != true {
print("Failed to load the JWE file.")
return
}
success = jwe.loadSb(sb: sbJwe)
if success == false {
print("\(jwe.lastErrorText!)")
return
}
// Search the per-recipient unprotected headers for a member named "kid" whose value equals the
// given string. Returns the recipient index, or -1 if not found.
var bCaseSensitive: Bool = true
var index: Int = jwe.findRecipient(paramName: "kid", paramValue: "recipient-key-1", caseSensitive: bCaseSensitive).intValue
if index < 0 {
print("Recipient not found.")
return
}
print("Found recipient at index \(index)")
}