Sample code for 30+ languages & platforms
Swift

Example: Crypt2.EncryptEncoded method

Demonstrates how to call the EncryptEncoded method.

Chilkat Swift Downloads

Swift

func chilkatTest() {
    let crypt = CkoCrypt2()!

    crypt.cryptAlgorithm = "aes"
    crypt.cipherMode = "cbc"
    crypt.keyLength = 128
    crypt.setEncodedKey(keyStr: "000102030405060708090A0B0C0D0E0F", encoding: "hex")
    crypt.setEncodedIV(ivStr: "000102030405060708090A0B0C0D0E0F", encoding: "hex")

    // Encrypt the bytes 0x00, 0x01, 0x02, ... 0x0A
    // and return the encrypted bytes using the lowercase hex encoding.
    crypt.encodingMode = "hex_lower"
    var encrypted: String? = crypt.encryptEncoded(str: "000102030405060708090a")
    print("\(encrypted!)")

    // Output:
    // 9da2ae71a5378487114b430e5e230378

    var decrypted: String? = crypt.decryptEncoded(str: encrypted)
    print("\(decrypted!)")

    // Output:
    // 000102030405060708090a

}