pure Rust implementation of BLAKE2 based on RFC 7693
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
567 B

[package]
name = "blake2-rfc"
version = "0.2.10"
authors = ["Cesar Eduardo Barros <cesarb@cesarb.eti.br>"]
description = "A pure Rust implementation of BLAKE2 based on the draft RFC."
repository = "https://github.com/cesarb/blake2-rfc"
readme = "README.md"
keywords = ["blake2", "blake2b", "blake2s", "hash", "crypto"]
license = "MIT"
[features]
bench = []
simd = ["simdty"]
simd_opt = ["simd"]
simd_asm = ["simd_opt"]
[dependencies]
constant_time_eq = "0.1.0"
[dependencies.simdty]
version = "0.0.3"
optional = true
[dev-dependencies]
rustc-serialize = "0.3.15"