blob: 23fbc987e56f5c7b69b08d393f0cd1d344fa657c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
[package]
name = "spake2"
version = "0.0.6"
authors = ["Brian Warner <warner@lothar.com>"]
description = "The SPAKE2 password-authenticated key-exchange algorithm, in Rust."
documentation = "https://docs.rs/spake2"
homepage = "https://github.com/warner/spake2.rs"
repository = "https://github.com/warner/spake2.rs"
license = "MIT"
categories = ["cryptography"]
exclude = [
".gitignore"
]
[badges]
travis-ci = { repository = "warner/spake2.rs" }
[dependencies]
curve25519-dalek = "0.17"
rand = "0.5"
sha2 = "0.7"
hkdf = "0.5"
num-bigint = "0.1"
hex = "0.3"
[dev-dependencies]
hex = "0.3"
bencher = "0.1"
[[bench]]
name = "spake2"
harness = false
|