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.1.1.tar.gz
(1.8 MB
view details)
File details
Details for the file mcleece-0.1.1.tar.gz
.
File metadata
- Download URL: mcleece-0.1.1.tar.gz
- Upload date:
- Size: 1.8 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.0 CPython/3.9.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f9c0dedc21181ccaa2a9a6debc93732e0dcf8be99c297f74f18ccc1eaaa491af |
|
MD5 | e0ef8741ef0d033db7a766875cdf88da |
|
BLAKE2b-256 | 251a5ed5791e2e3bd732d106119b35455c133e03ce82e54ad326d455ce720932 |