[package] name = "crypto-primitives" version = "0.1.0" authors = [ "Sean Bowe", "Alessandro Chiesa", "Matthew Green", "Ian Miers", "Pratyush Mishra", "Howard Wu" ] description = "A library of cryptographic primitives that are used by Zexe" homepage = "https://libzexe.org" repository = "https://github.com/scipr/zexe" documentation = "https://docs.rs/crypto-primitives/" keywords = ["r1cs", "groth16", "gm17", "pedersen", "blake2s"] categories = ["cryptography"] include = ["Cargo.toml", "src", "README.md", "LICENSE-APACHE", "LICENSE-MIT"] license = "MIT/Apache-2.0" edition = "2018" ################################# Dependencies ################################ [dependencies] algebra = { path = "../algebra" } r1cs-core = { path = "../r1cs-core", optional = true } r1cs-std = { path = "../r1cs-std", optional = true } gm17 = { path = "../gm17", optional = true } groth16 = { path = "../groth16", optional = true } bench-utils = { path = "../bench-utils" } digest = "0.7" blake2 = "0.7" rand = { version = "0.7" } derivative = "1" rayon = "1" [features] r1cs = [ "r1cs-core", "r1cs-std" ] [dev-dependencies] criterion = "0.3.1" rand_xorshift = { version = "0.2" } ################################# Benchmarks ################################## [[bench]] name = "pedersen_crh" path = "benches/crypto_primitives/crh.rs" harness = false [[bench]] name = "pedersen_comm" path = "benches/crypto_primitives/comm.rs" harness = false [[bench]] name = "blake2s_prf" path = "benches/crypto_primitives/prf.rs" harness = false [[bench]] name = "schnorr_sig" path = "benches/crypto_primitives/signature.rs" harness = false