Files
python/exercises/simple-cipher/simple_cipher.py

10 lines
153 B
Python
Raw Normal View History

class Cipher(object):
def __init__(self, key=None):
pass
def encode(self, text):
pass
def decode(self, text):
pass