func testAES192EncryptionWithoutIVProducesExpectedString() {
        guard let cipherText = CipherText(message: "Hello World!", key: "012345678901234567890123", iv: nil, algorithm: .aes192) else {
            XCTFail("It is possible to encrypt using the provided values.")
            return
        }