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.122 tracks/csharp/exercises/simple-cipher/SimpleCipher.cs
trackler-2.2.1.121 tracks/csharp/exercises/simple-cipher/SimpleCipher.cs
trackler-2.2.1.120 tracks/csharp/exercises/simple-cipher/SimpleCipher.cs
trackler-2.2.1.119 tracks/csharp/exercises/simple-cipher/SimpleCipher.cs
trackler-2.2.1.118 tracks/csharp/exercises/simple-cipher/SimpleCipher.cs
trackler-2.2.1.117 tracks/csharp/exercises/simple-cipher/SimpleCipher.cs
trackler-2.2.1.116 tracks/csharp/exercises/simple-cipher/SimpleCipher.cs
trackler-2.2.1.115 tracks/csharp/exercises/simple-cipher/SimpleCipher.cs
trackler-2.2.1.114 tracks/csharp/exercises/simple-cipher/SimpleCipher.cs
trackler-2.2.1.113 tracks/csharp/exercises/simple-cipher/SimpleCipher.cs
trackler-2.2.1.111 tracks/csharp/exercises/simple-cipher/SimpleCipher.cs
trackler-2.2.1.110 tracks/csharp/exercises/simple-cipher/SimpleCipher.cs
trackler-2.2.1.109 tracks/csharp/exercises/simple-cipher/SimpleCipher.cs
trackler-2.2.1.108 tracks/csharp/exercises/simple-cipher/SimpleCipher.cs
trackler-2.2.1.107 tracks/csharp/exercises/simple-cipher/SimpleCipher.cs
trackler-2.2.1.106 tracks/csharp/exercises/simple-cipher/SimpleCipher.cs
trackler-2.2.1.105 tracks/csharp/exercises/simple-cipher/SimpleCipher.cs
trackler-2.2.1.104 tracks/csharp/exercises/simple-cipher/SimpleCipher.cs
trackler-2.2.1.103 tracks/csharp/exercises/simple-cipher/SimpleCipher.cs
trackler-2.2.1.102 tracks/csharp/exercises/simple-cipher/SimpleCipher.cs