About

Metadata

  • Last updated , by sgschlesinger
  • License MIT
  • Categories Cryptography
  • Maintained by: sgschlesinger@gmail.com

  • Lottery factor: 0

Links

Installation

Readme

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"