Skip to content

Commit

Permalink
change
Browse files Browse the repository at this point in the history
  • Loading branch information
lumbrjx committed Jan 24, 2024
1 parent f538064 commit d2e8048
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down
1 change: 0 additions & 1 deletion src/encpt/mapping/mapper.rs
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,6 @@ pub fn chr_to_mxas(vc: Vec<&str>, direc: DirecType) -> Result<Vec<&str>, &str> {
for e in &vc {
for s in CHAR_MAP {
if e == &s[fs] {
println!("{}", e);
result.push(s[sc]);
}
}
Expand Down
1 change: 0 additions & 1 deletion src/encpt/math/matrix.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down

0 comments on commit d2e8048

Please sign in to comment.