Sha256: 1b8df8d4994725847af8c326a3cbded9e55be8260e1b4b2dbcbeef5d95091435
Contents?: true
Size: 735 Bytes
Versions: 17
Compression:
Stored size: 735 Bytes
Contents
using System; public class SimpleCipher { public SimpleCipher() { throw new NotImplementedException("You need to implement this function."); } public SimpleCipher(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
17 entries across 17 versions & 1 rubygems