Stephen Touset
Stephen Touset
Error handling best practices have changed in Rust yet again. Investigate [snafu](https://github.com/shepmaster/snafu) and [fehler](https://github.com/withoutboats/fehler).
Referencing concerns raised in #82 by @oblique.
I have some code that's gated by an ```rust if cfg!(config_setting) { // do a thing } else { // do a different thing } ``` Given that only one...
1. Default, non-random secrets are _always_ a bad idea. 2. MD5 is not a good passphrase hashing function. 3. MD5, while not _yet_ vulnerable to preimage attacks (which would allow...