inejge / pwhash

A collection of password hashing routines in pure Rust
MIT License
61 stars 11 forks source link

Tracking issue for migration from rust-crypto to supported crates #4

Closed inejge closed 5 years ago

inejge commented 7 years ago

Since rust-crypto is unmaintained, pwhash should probably be migrated away from using it for all digest and encryption algorithms (except DES, which is in-tree). There are independent crates for MD5, SHA1 and SHA2. There is nothing that I know of for bcrypt, so I'll probably move it in-tree from rust-crypto.

newpavlov commented 7 years ago

Take a look at RustCrypto organization. It has all hash functions you need and DES implementation too. (though not yet published) There is also a bcrypt crate, but it will need a bit of work.

inejge commented 6 years ago

Revisited for v0.2.0: bcrypt is still missing in RustCrypto, so I see no pressing reason to proceed with porting.

newpavlov commented 6 years ago

You can use @Keats bcrypt crate, it's not part of RustCrypto (though I will be happy to see it change), but it does the job.

inejge commented 5 years ago

Thanks to @andy128k, the migration is now complete, so I'm closing this.