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