Closed Hyunggilwoo closed 8 months ago
you have a conflict with main that needs to be resolved before merging this pr heads up
you fixed it! nicely done. merging this PR into main just requires you to format the code correctly. please run:
cargo clippy
cargo fmt
cargo test
cargo check
to ensure that everything is clean and tidy. also please note the comment on the tests on using .unwrap()
instead of the match statements. its ok to use unwrap()
in test code.
looks great! to merge, address these items:
cargo fmt
merging this to main requires resolving the conflicts from your previous PR but you should be able to easily do it from the web editor
If password2 tries to decrypt a text that was encrypted with password1, then the message will return back to the text encrypted with password1.
Added the features to
sha3_decrypt
andkey_decrypt
. Created tests for the 4 security parameters (224, 256, 384, 512) bothsha3_decrypt
andkey_decrypt
.