Skip to content

Latest commit

 

History

History
53 lines (34 loc) · 2.01 KB

File metadata and controls

53 lines (34 loc) · 2.01 KB

CryptoPyX

Ruff uv PyPI - Version CI Status Dependabot Status Publish to PyPI Status PyPI - Python Version Licence

A python cryptography package written in Rust made for speed.

Example Library Usage

from cryptopyx.encodings import base32
base32.encode_bytes(b'Hello World')  # b'JBSWY3DPEBLW64TMMQ======'
base32.decode_bytes(b'JBSWY3DPEBLW64TMMQ======')  # b'Hello World'

Example CLI Usage

image

Installation guide

Install from PyPI

This package supports Python 3.10 and above

pip install cryptopyx

See Building From Source below for more information.

Documentation

The documentation is still work in progress, but you can see it here: Documentation website.

Building From source

To build from source without Rust after cloning the repository, simply run

pip install .

Licence

This is licensed under MIT licence. See LICENSE for full information.