-> String -> String
decode :: a -> String -> String
data OneTimePad = OTP String
instance Cipher OneTimePad where
encode (OTP pad) text = applyOTP pad text
decode (OTP pad) text = applyOTP pad text
myOTP :: OneTimePad
myOTP = OTP (cycle [minBound .. maxBound])
а в чем отличие от моего кода ?
незнание о маркдауне
Знал но забыл....
Обсуждают сегодня