readme compiling notice and removing debugs

This commit is contained in:
Christoph J. Scherr 2023-05-06 15:18:36 +02:00
parent f453d2e0c7
commit 99981d2eec
Signed by: PlexSheep
GPG Key ID: 25B4ACF7D88186CC
2 changed files with 5 additions and 6 deletions

View File

@ -15,7 +15,8 @@ It boils down to the following steps:
- Make sure you use the right Python version. I made this with Python 3.11 and PyO3 requires at least Python 3.7 - 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. - 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` - Install maturin `pip install maturin --user`
- compile the plexcryptool module using `maturin develop -r` - compile the plexcryptool python module using `maturin develop -r` or `maturin build --release`
- compile the plexcryptool executable using `cargo run --release` or install it to your system with `cargo install --path .`
Thats it! Thats it!

View File

@ -76,9 +76,9 @@ pub fn main() {
Commands::Math(action) => { Commands::Math(action) => {
match action.action { match action.action {
MathActions::Modexp(mod_exp_args) => { MathActions::Modexp(mod_exp_args) => {
let b = num_bigint::BigInt::from_str(&mod_exp_args.base.as_str()).expect("a"); let b = num_bigint::BigInt::from_str(&mod_exp_args.base.as_str()).expect("could not make bigint");
let e = num_bigint::BigInt::from_str(&mod_exp_args.exp.as_str()).expect("a"); let e = num_bigint::BigInt::from_str(&mod_exp_args.exp.as_str()).expect("could not make bigint");
let f = num_bigint::BigInt::from_str(&mod_exp_args.field.as_str()).expect("a"); let f = num_bigint::BigInt::from_str(&mod_exp_args.field.as_str()).expect("could not make bigint");
let result = modular_exponentiation(b.clone(), e, f); let result = modular_exponentiation(b.clone(), e, f);
if args.machine { if args.machine {
println!("{}", result) println!("{}", result)
@ -93,7 +93,6 @@ pub fn main() {
match action.action { match action.action {
BinaryActions::Rotate(bin_rot_args) => { BinaryActions::Rotate(bin_rot_args) => {
let result: u32; let result: u32;
dbg!(&bin_rot_args.left);
if bin_rot_args.left { if bin_rot_args.left {
result = binary::rotl32(bin_rot_args.base, bin_rot_args.shift_width); result = binary::rotl32(bin_rot_args.base, bin_rot_args.shift_width);
} }
@ -117,4 +116,3 @@ pub fn main() {
} }
} }
} }