Sha256: 105eec62b38ee0be4f35b4d3c871c820a233c9acfcece7d0f74b0a075ca168f6

Contents?: true

Size: 717 Bytes

Versions: 264

Compression:

Stored size: 717 Bytes

Contents

using System;

public class Cipher
{
    public Cipher()
    {
        throw new NotImplementedException("You need to implement this function.");
    }

    public Cipher(string key)
    {
        throw new NotImplementedException("You need to implement this function.");
    }
    
    public string Key 
    {
        get
        {
            throw new NotImplementedException("You need to implement this function.");
        }
    }

    public string Encode(string plaintext)
    {
        throw new NotImplementedException("You need to implement this function.");
    }

    public string Decode(string ciphertext)
    {
        throw new NotImplementedException("You need to implement this function.");
    }
}

Version data entries

264 entries across 264 versions & 1 rubygems

Version Path
trackler-2.2.1.162 tracks/csharp/exercises/simple-cipher/SimpleCipher.cs
trackler-2.2.1.161 tracks/csharp/exercises/simple-cipher/SimpleCipher.cs
trackler-2.2.1.160 tracks/csharp/exercises/simple-cipher/SimpleCipher.cs
trackler-2.2.1.159 tracks/csharp/exercises/simple-cipher/SimpleCipher.cs
trackler-2.2.1.158 tracks/csharp/exercises/simple-cipher/SimpleCipher.cs
trackler-2.2.1.157 tracks/csharp/exercises/simple-cipher/SimpleCipher.cs
trackler-2.2.1.156 tracks/csharp/exercises/simple-cipher/SimpleCipher.cs
trackler-2.2.1.155 tracks/csharp/exercises/simple-cipher/SimpleCipher.cs
trackler-2.2.1.154 tracks/csharp/exercises/simple-cipher/SimpleCipher.cs
trackler-2.2.1.153 tracks/csharp/exercises/simple-cipher/SimpleCipher.cs
trackler-2.2.1.152 tracks/csharp/exercises/simple-cipher/SimpleCipher.cs
trackler-2.2.1.151 tracks/csharp/exercises/simple-cipher/SimpleCipher.cs
trackler-2.2.1.150 tracks/csharp/exercises/simple-cipher/SimpleCipher.cs
trackler-2.2.1.149 tracks/csharp/exercises/simple-cipher/SimpleCipher.cs
trackler-2.2.1.148 tracks/csharp/exercises/simple-cipher/SimpleCipher.cs
trackler-2.2.1.147 tracks/csharp/exercises/simple-cipher/SimpleCipher.cs
trackler-2.2.1.146 tracks/csharp/exercises/simple-cipher/SimpleCipher.cs
trackler-2.2.1.145 tracks/csharp/exercises/simple-cipher/SimpleCipher.cs
trackler-2.2.1.144 tracks/csharp/exercises/simple-cipher/SimpleCipher.cs
trackler-2.2.1.143 tracks/csharp/exercises/simple-cipher/SimpleCipher.cs