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