diff options
| author | Steven Fackler <[email protected]> | 2016-10-22 09:17:41 -0700 |
|---|---|---|
| committer | Steven Fackler <[email protected]> | 2016-10-22 09:17:41 -0700 |
| commit | ae72cbd28b16823a44588b13efd79be31ffd3b7e (patch) | |
| tree | 3a17c1a26075d242857f18bf6631f8d6e5a9562e /openssl/src | |
| parent | Flatten crypto module (diff) | |
| download | rust-openssl-ae72cbd28b16823a44588b13efd79be31ffd3b7e.tar.xz rust-openssl-ae72cbd28b16823a44588b13efd79be31ffd3b7e.zip | |
Fix hasher docs
Diffstat (limited to 'openssl/src')
| -rw-r--r-- | openssl/src/hash.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/openssl/src/hash.rs b/openssl/src/hash.rs index ec265631..9112ed24 100644 --- a/openssl/src/hash.rs +++ b/openssl/src/hash.rs @@ -103,7 +103,7 @@ use self::State::*; /// /// Don't actually use MD5 and SHA-1 hashes, they're not secure anymore. /// -/// Don't ever hash passwords, use `crypto::pkcs5` or bcrypt/scrypt instead. +/// Don't ever hash passwords, use the functions in the `pkcs5` module or bcrypt/scrypt instead. pub struct Hasher { ctx: *mut ffi::EVP_MD_CTX, md: *const ffi::EVP_MD, |