small scripts i made for use with some dhbw items
Go to file
Christoph J. Scherr f3201c7758
fixed warnings
2023-05-02 15:19:29 +02:00
.github/workflows migration to pyo3 app 2023-04-25 18:09:04 +02:00
plexcryptool removed a fixme 2023-04-27 23:32:19 +02:00
src fixed warnings 2023-05-02 15:19:29 +02:00
.gitignore migration to pyo3 app 2023-04-25 18:09:04 +02:00
Cargo.lock iterated squaring start 2023-05-02 14:05:36 +02:00
Cargo.toml iterated squaring start 2023-05-02 14:05:36 +02:00
LICENSE „LICENSE“ ändern 2023-04-22 10:51:48 +02:00
README.md readme compile section 2023-04-27 23:12:19 +02:00
pyproject.toml stub files work, keyed hash works 2023-04-25 19:36:56 +02:00
pyvenv.cfg migration to pyo3 app 2023-04-25 18:09:04 +02:00

README.md

plexcryptool

A collection of tools for cryptography uses.

Hybrid Repository

This Repository uses a combination of python and rust code through pyo3 rust bindings. The reason for this is that python is a tool dynamic language, screwing around with datatypes a bit too much for my liking.

Compiling

Parts of the python scripts in this repository use my library plexcryptool, which is implemented in Rust. To compile follow this guide It boils down to the following steps:

  • Install Rust, preferably through rustup, as that is the official Rust distribution. Your package manager might still be fine.
  • Make sure you use the right Python version. I made this with Python 3.11 and PyO3 requires at least Python 3.7
  • Create a virtual environment in the root of the repository. I used python -m venv .venv for this. Activate the venv.
  • Install maturin pip install maturin --user
  • compile the plexcryptool module using maturin develop -r

Thats it!

License

MIT License