-
Notifications
You must be signed in to change notification settings - Fork 84
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
Missing algorithms #1
Comments
I have an implementation of AES KW as defined here: |
Does this issue mean that RustCrypto will not include bcrypt password hashing? Or maybe there will be yet another implementation of it in this repo? |
I don't plan on doing a competing implementation without a good reason (e.g. substantial improvements/fixes which @Keats will not accept to his crate for some reason or support of hypothetical password hashing trait). Though I still would be happy to accept the crate transfer if he''ll change his mind. |
I can give a shot for Argon2, since there is already a Rust implementation and that RustCrypto already has Blake2. Are you still looking for someone to implement it here? |
Since argon2rs has not been updated for the last 2 years and the maintainer is not answering on the ticket, what about asking the maintainer of https://github.com/sru-systems/rust-argon2 instead? It works on WASM even with multiple lanes, supports multithreading via features, supports Argon2id and is still maintained. Biggest weak point for now is the lack of SIMD. |
@zer0x64 Thank you for information! |
For the record, one cons of all existing Argon2 implementations is a lack of |
We should definitely ping one of the existing authors to see if they want to collaborate. Otherwise, we can fork one of the existing crates, add |
I've already pinged them in the past, see issues linked in the OP list. |
@newpavlov what about the maintainer of rust-argon2 as @zer0x64 mentioned? |
Done, see the linked issue. |
There is also argonautica which supports SIMD. |
We now have an |
We can mark Balloon (and also fix the typo) as done, see https://crates.io/crates/balloon-hash. |
For your awareness, I'm working on an Internet-Draft for a modified version of Balloon called BKDF, which would represent a proper specification of Balloon. It's not finalised as I'm still trying to collect feedback on the design/design ideas from cryptographers, but it contains a number of improvements already. I would greatly appreciate feedback on the draft/design from the Rust Crypto maintainers/contributors, especially @tarcieri since you were a PHC judge. I will acknowledge people in the Acknowledgments section with their permission. |
bcrypt(see rust-bcrypt crate and this comment)Also see algorithms used in passlib.
The text was updated successfully, but these errors were encountered: