aboutsummaryrefslogtreecommitdiff
path: root/spake2/Cargo.toml
blob: febbb6dedf33492d31396e6dc46f571381dc8e1d (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
[package]
name = "spake2"
version = "0.3.0-pre"
authors = ["Brian Warner <warner@lothar.com>"]
description = "The SPAKE2 password-authenticated key-exchange algorithm."
documentation = "https://docs.rs/spake2"
homepage = "https://github.com/RustCrypto/PAKEs"
repository = "https://github.com/RustCrypto/PAKEs/tree/master/spake2"
license = "MIT OR Apache-2.0"
keywords = ["crypto", "pake", "authentication"]
categories = ["cryptography", "authentication"]
exclude = [".gitignore"]
readme = "README.md"
edition = "2021"
rust-version = "1.56"

[dependencies]
curve25519-dalek = "3"
rand_core = { version = "0.5", default-features = false, features = ["getrandom"] }
sha2 = "0.10"
hkdf = "0.12"

[dev-dependencies]
bencher = "0.1"
hex = "0.4"
num-bigint = "0.4"

[[bench]]
name = "spake2"
harness = false