Skip to main content

Python wrapper for libmcleece encryption library

Project description

pymcleece

A python wrapper for the libmcleece encryption C/C++ library. C++ dependencies (libmcleece, libsodium) are included as a git submodule.

git clone --recursive https://github.com/sz3/pymcleece.git
python setup.py build
python setup.py install

or with pip:

pip install mcleece

... linux should work, macOS could work, windows is unknown at the moment.

Usage

from mcleece.crypto_box import PrivateKey, PublicKey, SealedBox
sk, pk = PrivateKey.generate()

ebox = SealedBox(pk)
ciphertext = ebox.encrypt(b'helloworld')

dbox = SealedBox(sk)
recoveredtext = dbox.decrypt(ciphertext)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

mcleece-0.4.0.tar.gz (1.8 MB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page