26 releases

0.11.0-pre.3 Feb 1, 2024
0.10.6 Sep 21, 2023
0.10.5 Sep 16, 2022
0.10.1 Feb 17, 2022
0.0.3 Nov 21, 2014

#8 in Cryptography

Download history 548780/week @ 2023-12-23 756229/week @ 2023-12-30 897365/week @ 2024-01-06 945822/week @ 2024-01-13 1006873/week @ 2024-01-20 1039988/week @ 2024-01-27 980604/week @ 2024-02-03 969366/week @ 2024-02-10 948763/week @ 2024-02-17 1000013/week @ 2024-02-24 1037882/week @ 2024-03-02 1031511/week @ 2024-03-09 1053732/week @ 2024-03-16 1047532/week @ 2024-03-23 1081843/week @ 2024-03-30 883606/week @ 2024-04-06

4,237,972 downloads per month
Used in 5,013 crates (486 directly)

MIT/Apache

31KB
650 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.

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"));

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

Minimum Supported Rust Version

Rust 1.72 or higher.

Minimum supported Rust version can be changed in the future, but it will be done with a minor version bump.

SemVer Policy

  • All on-by-default features of this library are covered by SemVer
  • MSRV is considered exempt from SemVer as noted above

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

~305–510KB
~12K SLoC