An open API service indexing awesome lists of open source software.

https://github.com/jedisct1/rust-hmac-sha256

A small, self-contained SHA256 and HMAC-SHA256 implementation.
https://github.com/jedisct1/rust-hmac-sha256

crypto hash hmac hmac-sha256 nostd rust sha256

Last synced: about 1 year ago
JSON representation

A small, self-contained SHA256 and HMAC-SHA256 implementation.

Awesome Lists containing this project

README

          

# rust-hmac-sha256

A small, self-contained SHA256, HMAC-SHA256, and HKDF-SHA256 implementation in Rust.

Optional features:

* `traits`: enable support for the `Digest` trait from the `digest` crate.
* `opt_size`: enable size optimizations. Based on benchmarks, the `.text`
section size is reduced by 75%, at the cost of approximately 16% performance.