A python cryptography package written in Rust made for speed.
from cryptopyx.encodings import base32
base32.encode_bytes(b'Hello World') # b'JBSWY3DPEBLW64TMMQ======'
base32.decode_bytes(b'JBSWY3DPEBLW64TMMQ======') # b'Hello World'This package supports Python 3.10 and above
pip install cryptopyxSee Building From Source below for more information.
The documentation is still work in progress, but you can see it here: Documentation website.
To build from source without Rust after cloning the repository, simply run
pip install .This is licensed under MIT licence. See LICENSE for full information.
