diff --git a/Cargo.lock b/Cargo.lock index c5846ac..02b8319 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4,4 +4,4 @@ version = 3 [[package]] name = "df1t-cyph" -version = "0.1.0" +version = "0.1.1" diff --git a/Cargo.toml b/Cargo.toml index 64ba28b..1b5472c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "df1t-cyph" -version = "0.1.0" +version = "0.1.1" edition = "2021" description = "minimal rust encryption algorithm made by a solid structured sequential algorithms without any external cryptographic crates" repository ="https://github.com/CLOG9/df1t-cyph" diff --git a/src/encpt/mapping/mapper.rs b/src/encpt/mapping/mapper.rs index 929fe54..6f506e9 100644 --- a/src/encpt/mapping/mapper.rs +++ b/src/encpt/mapping/mapper.rs @@ -54,7 +54,6 @@ pub fn chr_to_mxas(vc: Vec<&str>, direc: DirecType) -> Result, &str> { for e in &vc { for s in CHAR_MAP { if e == &s[fs] { - println!("{}", e); result.push(s[sc]); } } diff --git a/src/encpt/math/matrix.rs b/src/encpt/math/matrix.rs index c91403f..fc98529 100644 --- a/src/encpt/math/matrix.rs +++ b/src/encpt/math/matrix.rs @@ -153,7 +153,6 @@ mod tests { while !my_vector.is_empty() { let removed_element = my_vector.remove(0); - println!("Removed element: {} , {:?}", removed_element, my_vector); } } poppp()