Sample code for 30+ languages & platforms
Swift

Decrypt a .p7m File (using a PFX)

See more Encryption Examples

_LANGUAGE_ sample code showing how to decrypt a .p7m using a .p12 / .pfx certificate w/ private key.

Chilkat Swift Downloads

Swift

func chilkatTest() {
    var success: Bool = false

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

    let crypt = CkoCrypt2()!

    // Use a digital certificate and private key from a PFX file (.pfx or .p12).
    var pfxPath: String? = "myCertAndKey.pfx"
    var pfxPassword: String? = "test123"

    success = crypt.addPfxSourceFile(pfxFilePath: pfxPath, password: pfxPassword)
    if success != true {
        print("\(crypt.lastErrorText!)")
        return
    }

    // Set the  outPath to whatever is appropriate.
    // If you are decrypting a PDF, your output might be "out.pdf"...
    var inPath: String? = "smime.p7m"
    var outPath: String? = "original.txt"

    // Indicate that we're doing public key decryption (i.e. PKCS7)
    crypt.cryptAlgorithm = "pki"

    success = crypt.ckDecryptFile(srcFile: inPath, destFile: outPath)
    if success == false {
        print("\(crypt.lastErrorText!)")
        return
    }

    print("Success.")

}