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 d2e8048 commit 2d9d995
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 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.1"
version = "0.2.0"
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: 1 addition & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ mod tests {
let salt = "76sqdf";
let buffer = "pa89631ord";
let enc = df1t_encrypt(buffer.to_owned(), salt.clone().to_string());
println!("{:?}", &enc);
let res = df1t_decrypt(enc.unwrap().to_owned(), salt.to_owned());
assert_eq!(res.unwrap().to_owned(), buffer);
}
Expand Down

0 comments on commit 2d9d995

Please sign in to comment.