#sha-1 #message-authentication #hmac #hash #hashing #wrapper #rust-crypto

hmac-sha1

A simple wrapper around the RustCrypto hmac and sha1 crates for simple HMAC-SHA1 generation

5 releases

0.2.2 Dec 8, 2023
0.2.1 Oct 22, 2023
0.1.3 Sep 24, 2016
0.1.2 Sep 24, 2016
0.1.1 Sep 21, 2016

#146 in Algorithms

Download history 5533/week @ 2023-12-20 4281/week @ 2023-12-27 11061/week @ 2024-01-03 8503/week @ 2024-01-10 9136/week @ 2024-01-17 8918/week @ 2024-01-24 7154/week @ 2024-01-31 8342/week @ 2024-02-07 8555/week @ 2024-02-14 8186/week @ 2024-02-21 11556/week @ 2024-02-28 11917/week @ 2024-03-06 11063/week @ 2024-03-13 11148/week @ 2024-03-20 8074/week @ 2024-03-27 10424/week @ 2024-04-03

43,057 downloads per month
Used in 55 crates (16 directly)

BSD-3-Clause

7KB
70 lines

Rust-HMAC-SHA1

crates.io version

A simple wrapper around the RustCrypto hmac and sha1 crates for simple HMAC-SHA1 generation.

Functionality Note

As the crate is now a thin wrapper around RustCrypto, please note that this crate can be replaced with the following code:

use sha1::Sha1;
use hmac::{Hmac, Mac};

pub fn main() {
    ...

    // Create the hasher with the key. We can use expect for Hmac algorithms as they allow arbitrary key sizes.
    let mut hasher: Hmac<Sha1> = Mac::new_from_slice(key) .expect("HMAC algoritms can take keys of any size");

    // hash the message
    hasher.update(message);

    // finalize the hash and convert to a static array
    let hmac: [u8;20] = hasher.finalize().into_bytes().into()

    ...
}

Usage

To import rust-hmac-sha1 add the following to your Cargo.toml:

[dependencies]
hmac-sha1 = "^0.2"

To use rust-hmac-sha1, simply use the single provided function:

let hmac_digest: [u8; hmac_sha1::SHA1_DIGEST_BYTES] = hmac_sha1::hmac_sha1(key, message);

Contributions

Any contributions are welcome.

This was implemented as a learning experience - an implementation for hmac-sha1 from just a SHA1 hasher is included in 0.1.x versions.

License

This crate is licensed under the BSD 3-Clause license.

This crate also depends on the RustCrypto Project to provide the underlying cryptographic implementations. These crates are dual licensed under MIT and Apache-2.0.

Dependencies

~460KB