31 releases

Uses new Rust 2024

0.11.0-rc.3 Nov 5, 2025
0.11.0-rc.0 May 29, 2025
0.11.0-pre.5 Mar 5, 2025
0.11.0-pre.4 Jul 26, 2024
0.0.3 Nov 21, 2014

#242 in Cryptography

Download history 3379679/week @ 2025-08-25 4040973/week @ 2025-09-01 2667980/week @ 2025-09-08 2681797/week @ 2025-09-15 2859157/week @ 2025-09-22 2826928/week @ 2025-09-29 2807325/week @ 2025-10-06 2736627/week @ 2025-10-13 2828136/week @ 2025-10-20 2990096/week @ 2025-10-27 3045063/week @ 2025-11-03 2902410/week @ 2025-11-10 3190001/week @ 2025-11-17 2577290/week @ 2025-11-24 2950217/week @ 2025-12-01 3165078/week @ 2025-12-08

12,079,782 downloads per month
Used in 9,151 crates (976 directly)

MIT/Apache

37KB
786 lines

RustCrypto: SHA-1

crate Docs Apache2/MIT licensed Rust Version Project Chat Build Status

Pure Rust implementation of the SHA-1 cryptographic hash algorithm.

Warning: Cryptographically Broken!

The SHA-1 hash function should be considered cryptographically broken and unsuitable for further use in any security critical capacity, as it is practically vulnerable to chosen-prefix collisions.

We provide this crate for legacy interoperability purposes only.

If possible use the sha1-checked crate, while slower it provides the ability to detect potential collisions, as well as generate alternative safe hashes.

Examples

One-shot API

use hex_literal::hex;
use sha1::{Sha1, Digest};

let result = Sha1::digest(b"hello world");
assert_eq!(result, hex!("2aae6c35c94fcfb415dbe95f408b9ce91ee846ed"));

Incremental API

use hex_literal::hex;
use sha1::{Sha1, Digest};

let mut hasher = Sha1::new();
hasher.update(b"hello world");
let hash = hasher.finalize();

assert_eq!(hash, hex!("2aae6c35c94fcfb415dbe95f408b9ce91ee846ed"));

// Hex-encode hash using https://docs.rs/base16ct
let hex_hash = base16ct::lower::encode_string(&hash);
assert_eq!(hex_hash, "2aae6c35c94fcfb415dbe95f408b9ce91ee846ed");

Also, see the examples section in the RustCrypto/hashes readme.

License

The crate is licensed under either of:

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Dependencies

~745KB
~19K SLoC