diff --git a/Cargo.lock b/Cargo.lock index 02b8319..c910422 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4,4 +4,4 @@ version = 3 [[package]] name = "df1t-cyph" -version = "0.1.1" +version = "0.2.0" diff --git a/Cargo.toml b/Cargo.toml index 1b5472c..49d154f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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" diff --git a/src/lib.rs b/src/lib.rs index 11afa7e..b52041e 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -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); }