33 releases

Uses new Rust 2024

0.11.0-rc.5 Feb 2, 2026
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.0.3 Nov 21, 2014

#250 in Cryptography

Download history 2984084/week @ 2025-10-24 2930112/week @ 2025-10-31 2971840/week @ 2025-11-07 3078926/week @ 2025-11-14 2870018/week @ 2025-11-21 2780396/week @ 2025-11-28 3136048/week @ 2025-12-05 3068757/week @ 2025-12-12 2227082/week @ 2025-12-19 1743957/week @ 2025-12-26 2835923/week @ 2026-01-02 3435682/week @ 2026-01-09 3513812/week @ 2026-01-16 3678784/week @ 2026-01-23 3927820/week @ 2026-01-30 4145300/week @ 2026-02-06

15,882,133 downloads per month
Used in 10,454 crates (1,124 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

~750KB
~19K SLoC