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