Files
opaque-vx/Cargo.toml
T

50 lines
1.4 KiB
TOML
Raw Normal View History

2020-06-05 09:35:14 -07:00
[package]
name = "opaque-ke"
2020-11-03 13:47:00 -05:00
version = "0.3.0-pre.1"
2020-06-05 09:35:14 -07:00
repository = "https://github.com/novifinancial/opaque-ke"
keywords = ["cryptography", "crypto", "opaque", "passwords", "authentication"]
description = "An implementation of the OPAQUE password-authenticated key exchange protocol"
authors = ["Kevin Lewi <[email protected]>", "François Garillot <[email protected]>"]
license = "MIT"
edition = "2018"
readme = "README.md"
2020-06-11 14:56:34 -07:00
[features]
default = ["u64_backend"]
2020-06-11 14:56:34 -07:00
slow-hash = ["scrypt"]
bench = []
u64_backend = ["curve25519-dalek/u64_backend", "x25519-dalek/u64_backend"]
u32_backend = ["curve25519-dalek/u32_backend", "x25519-dalek/u32_backend"]
2020-06-11 14:56:34 -07:00
2020-06-05 09:35:14 -07:00
[dependencies]
curve25519-dalek = { version = "3.0.0", default-features = false, features = ["std"] }
2020-07-27 15:25:04 -07:00
digest = "0.9.0"
2020-07-23 13:46:01 -04:00
displaydoc = "0.1.7"
2020-09-02 15:06:24 -04:00
fiat-crypto = { version = "0.1.5"}
generic-array = "0.14.4"
2020-07-23 13:46:01 -04:00
hkdf = "0.9.0"
hmac = "0.9.0"
2020-06-05 09:35:14 -07:00
rand_core = "0.5.1"
scrypt = { version = "0.4.1", optional = true }
2020-07-23 13:46:01 -04:00
sha2 = "0.9.1"
2020-09-02 15:06:24 -04:00
subtle = { version = "^2.2.1", default-features = false }
2020-07-23 13:46:01 -04:00
thiserror = "1.0.20"
x25519-dalek = { version = "1.0.1", default-features = false, features = ["std"] }
2020-06-05 09:35:14 -07:00
zeroize = "1.1"
[dev-dependencies]
anyhow = "1.0.32"
2020-07-23 13:46:01 -04:00
base64 = "0.12.3"
criterion = "0.3.3"
2020-06-05 09:35:14 -07:00
hex = "0.4.2"
lazy_static = "1.4.0"
serde_json = "1.0.57"
proptest = "0.10.1"
2020-06-12 18:46:08 -04:00
rand = "0.7"
rustyline = "6.3.0"
[[bench]]
name = "oprf"
harness = false
2020-07-22 15:22:47 -04:00
required-features = ["bench"]