I have a few Haskell functions such as;
encipher :: Int -> Char -> Char encipher 0 ch = ch encipher k ch = lookUp (ch) (makeKey k) normalize :: Stri