Description
Encryption and decryption.
README.md
Cropty
A little library for doing encryption using a combination of RSA and AEP, using the cryptonite library for cryptography.
ghci> privateKey <- generatePrivateKey KeySize256
ghci> encrypt (privateToPublic privateKey) "Hello" >>= decrypt privateKey
"Hello"