]> git.lizzy.rs Git - PAKEs.git/blob - spake2/Cargo.toml
0558737a8cc024295ab0332d5ecb391c584c897b
[PAKEs.git] / spake2 / Cargo.toml
1 [package]
2 name = "spake2"
3 version = "0.3.0-pre"
4 authors = ["Brian Warner <warner@lothar.com>"]
5 description = "The SPAKE2 password-authenticated key-exchange algorithm."
6 documentation = "https://docs.rs/spake2"
7 homepage = "https://github.com/RustCrypto/PAKEs"
8 repository = "https://github.com/RustCrypto/PAKEs/tree/master/spake2"
9 license = "MIT OR Apache-2.0"
10 keywords = ["crypto", "pake", "authentication"]
11 categories = ["cryptography", "authentication"]
12 exclude = [".gitignore"]
13 readme = "README.md"
14 edition = "2021"
15 rust-version = "1.56"
16
17 [dependencies]
18 curve25519-dalek = { version = "3", default-features = false, features = ["u64_backend"] }
19 rand_core = { version = "0.5", default-features = false, features = ["getrandom"] }
20 sha2 = "0.10"
21 hkdf = "0.12"
22
23 [dev-dependencies]
24 bencher = "0.1"
25 hex = "0.4"
26 num-bigint = "0.4"
27
28 [features]
29 default = []
30 std = []
31
32 [[bench]]
33 name = "spake2"
34 harness = false