hmac 0.12.0

Generic implementation of Hash-based Message Authentication Code (HMAC)
Documentation
[package]
name = "hmac"
version = "0.12.0" # Also update html_root_url in lib.rs when bumping this
description = "Generic implementation of Hash-based Message Authentication Code (HMAC)"
authors = ["RustCrypto Developers"]
license = "MIT OR Apache-2.0"
documentation = "https://docs.rs/hmac"
repository = "https://github.com/RustCrypto/MACs"
keywords = ["crypto", "mac", "hmac", "digest"]
categories = ["cryptography", "no-std"]
readme = "README.md"
edition = "2018"

[dependencies]
digest = { version = "0.10", features = ["mac"] }

[dev-dependencies]
digest = { version = "0.10", features = ["dev"] }
md-5 = { version = "0.10", default-features = false }
sha-1 = { version = "0.10", default-features = false }
sha2 = { version = "0.10", default-features = false }
streebog = { version = "0.10", default-features = false }
hex-literal = "0.2"

[features]
std = ["digest/std"]
reset = [] # Enable ability to reset HMAC instances