Sample code for 30+ languages & platforms
Swift

Load Certs from Java KeyStore into Trusted CA Roots

See more Java KeyStore (JKS) Examples

Demonstrates how to load a Java KeyStore containing CA root certificates that are to be trusted by the application. This can be done once at the beginning of an application, and then the trusted roots can be activated so that only these root CA certs are trusted by the application for any TLS connections.

Chilkat Swift Downloads

Swift

func chilkatTest() {
    var success: Bool = false

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

    let jks = CkoJavaKeyStore()!
    jks.verboseLogging = true

    var password: String? = "myPassword"
    success = jks.loadFile(password: password, path: "qa_data/jks/entrust_caCerts.jks")
    if success != true {
        print("\(jks.lastErrorText!)")
        return
    }

    let troots = CkoTrustedRoots()!
    troots.verboseLogging = true

    success = troots.addJavaKeyStore(keystore: jks)
    if success != true {
        print("\(troots.lastErrorText!)")
        return
    }

    var i: Int = 0
    var numCerts: Int = troots.numCerts.intValue
    while (i < numCerts) {
        var cacert: CkoCert? = troots.getCert(index: i)
        print("\(i): \(cacert!.subjectDN!)")
        cacert = nil
        i = i + 1
    }

    // Activate this specific set of trusted roots.
    success = troots.activate()
    if success != true {
        print("\(troots.lastErrorText!)")
        return
    }

    // Output:

    // 0: C=US, O=Entrust.net, OU=www.entrust.net/CPS incorp. by ref. (limits liab.), OU=(c) 1999 Entrust.net Limited, CN=Entrust.net Secure Server Certification Authority
    // 1: O=Entrust.net, OU=www.entrust.net/CPS_2048 incorp. by ref. (limits liab.), OU=(c) 1999 Entrust.net Limited, CN=Entrust.net Certification Authority (2048)
    // 2: C=US, O="Entrust, Inc.", OU=www.entrust.net/CPS is incorporated by reference, OU="(c) 2006 Entrust, Inc.", CN=Entrust Root Certification Authority

}