[package]
name = "blake2"
version = "0.8.1"
authors = ["RustCrypto Developers"]
description = "BLAKE2 hash functions"
documentation = "https://docs.rs/blake2"
keywords = ["crypto", "blake2", "hash", "digest"]
categories = ["cryptography", "no-std"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/RustCrypto/hashes"
[dependencies.byte-tools]
version = "0.3"
[dependencies.crypto-mac]
version = "0.7"
[dependencies.digest]
version = "0.8"
[dependencies.opaque-debug]
version = "0.2"
[dev-dependencies.crypto-mac]
version = "0.7"
features = ["dev"]
[dev-dependencies.digest]
version = "0.8"
features = ["dev"]
[dev-dependencies.hex-literal]
version = "0.1"
[features]
default = ["std"]
simd = []
simd_asm = ["simd_opt"]
simd_opt = ["simd"]
std = ["digest/std", "crypto-mac/std"]
[badges.travis-ci]
repository = "RustCrypto/hashes"