-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add Bcrypt hashing #27
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
you are doing well
…tification when user enters invalid input
todo: add byte input for salt bcrypt: add salt parsing (bugged!)
Sorry for other commits, I'm accidentally 😅 |
# Conflicts: # src/crypto_helper/algorithm.rs # src/crypto_helper/computations.rs # src/crypto_helper/input/bcrypt.rs
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
- I've enabled CI for your PR. Run
cargo +nightly fmt --all -- --check
andcargo clippy -- -D warnings
to see where and why it fails. Fix warnings and errors. - Fix my remarks.
- And then I'll approve your PR.
🌷 ☕ 🤩
code-style hints
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
good job. 🥑
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🥳 🍾
Add Bcrypt hashing with some raw functionality (salt parsing and hash verification). Requires review.