#sha-1 #digest #hash #const

no-std const-sha1

A sha1 implementation for use in const contexts

4 releases (2 breaking)

0.3.0 Jan 3, 2024
0.2.0 Jul 22, 2020
0.1.1 Jul 17, 2020
0.1.0 Jun 29, 2020

#332 in Cryptography

Download history 48081/week @ 2024-10-17 45386/week @ 2024-10-24 43360/week @ 2024-10-31 41286/week @ 2024-11-07 43324/week @ 2024-11-14 49071/week @ 2024-11-21 52855/week @ 2024-11-28 55854/week @ 2024-12-05 53874/week @ 2024-12-12 35735/week @ 2024-12-19 24516/week @ 2024-12-26 43003/week @ 2025-01-02 49219/week @ 2025-01-09 51373/week @ 2025-01-16 55355/week @ 2025-01-23 48660/week @ 2025-01-30

214,304 downloads per month
Used in 148 crates (13 directly)

Apache-2.0/MIT

22KB
465 lines

crates.io docs.rs Build and Test

const-sha1

A sha1 implementation useable in const contexts.

Use

const fn signature() -> [u32; 5] {
    const_sha1::sha1(stringify!(MyType).as_bytes()).data
}

Minimum Supported Rust Version (MSRV)

This crate requires Rust 1.46.0 or newer due to the use of some const expression features.

No-std

const-sha1 = { version = "0.2.0", default-features = false }

Attribution

This code is largely inspired by the following repos:


lib.rs:

A const evaluated sha1 function.

Use

const fn signature() -> const_sha1::Digest {
    const_sha1::sha1(stringify!(MyType).as_bytes())
}

No runtime deps

Features