-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* argon2: Initial commit * readme: fix readme * argon2: impl `From` trait for Argon2 structs * argon2: add switch * argon2: impl `process_argon2` * argon2: fix serialization * argon2: Add rfc link * argon2: input: add `set_version` closure * argon2: fix `[u8]` to `String` conversion * argon2: fixes * info: Add `Argon2` and `Bcrypt` * argon2: generate random salt if empty one is supplied * argon2: fix random salt generation * argon2: impl `TryFrom<&str>` for `Argon2Variant` * argon2: add salt input * argon2: remove duplicate entries in the about page * argon2: remove extra `data` field * argon2: fix random salt generation and base64 padding character * argon2: fix salt encoding & decoding * argon2: fix hash computation * argon2: fix `Default` impl for `Argon2HashAction` * argon2: fix error types * argon2: fix * argon2: add hash verification * argon2: run formatter * feat(crypto-helper): update rust toolchain and inproved argon2 ui; --------- Co-authored-by: Jujumba <[email protected]>
- Loading branch information
1 parent
75a0f51
commit 2196f39
Showing
12 changed files
with
471 additions
and
83 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
[toolchain] | ||
channel = "1.76.0" | ||
channel = "1.77.0" | ||
components = [ "rustfmt", "clippy" ] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.