Sha256: a38df2a90ee635f9921f7a30f19bbf8b6421ba76004bd178f2472a7818b0fbd6
Contents?: true
Size: 710 Bytes
Versions: 188
Compression:
Stored size: 710 Bytes
Contents
using System; using System.Collections.Generic; public static class CryptoSquare { public static string NormalizedPlaintext(string plaintext) { throw new NotImplementedException("You need to implement this function."); } public static IEnumerable<string> PlaintextSegments(string plaintext) { throw new NotImplementedException("You need to implement this function."); } public static string Encoded(string plaintext) { throw new NotImplementedException("You need to implement this function."); } public static string Ciphertext(string plaintext) { throw new NotImplementedException("You need to implement this function."); } }
Version data entries
188 entries across 188 versions & 1 rubygems