Files
opaque-vx/Cargo.toml
T

98 lines
3.6 KiB
TOML
Raw Normal View History

2020-06-05 09:35:14 -07:00
[package]
2022-01-06 06:19:02 +01:00
authors = ["Kevin Lewi <[email protected]>", "François Garillot <[email protected]>"]
2021-08-12 06:25:07 +02:00
categories = ["no-std"]
2020-06-05 09:35:14 -07:00
description = "An implementation of the OPAQUE password-authenticated key exchange protocol"
2022-01-06 00:10:57 +01:00
edition = "2021"
2022-01-06 06:19:02 +01:00
keywords = ["cryptography", "crypto", "opaque", "passwords", "authentication"]
license = "Apache-2.0 OR MIT"
name = "opaque-ke"
2020-06-05 09:35:14 -07:00
readme = "README.md"
2022-01-06 06:19:02 +01:00
repository = "https://github.com/novifinancial/opaque-ke"
2022-02-25 07:13:22 +01:00
rust-version = "1.57"
2022-01-06 06:19:02 +01:00
version = "2.0.0-pre.1"
2020-06-05 09:35:14 -07:00
2020-06-11 14:56:34 -07:00
[features]
2022-02-25 07:13:22 +01:00
default = ["ristretto255_u64", "ristretto255_voprf", "serde"]
ristretto255 = ["curve25519-dalek", "voprf/ristretto255"]
ristretto255_fiat_u32 = ["curve25519-dalek/fiat_u32_backend", "ristretto255"]
ristretto255_fiat_u64 = ["curve25519-dalek/fiat_u64_backend", "ristretto255"]
ristretto255_simd = ["curve25519-dalek/simd_backend", "ristretto255"]
ristretto255_u32 = ["curve25519-dalek/u32_backend", "ristretto255"]
ristretto255_u64 = ["curve25519-dalek/u64_backend", "ristretto255"]
ristretto255_voprf = ["ristretto255", "voprf/ristretto255-ciphersuite"]
2022-01-06 06:19:02 +01:00
serde = ["serde_", "generic-array/serde", "voprf/serde"]
slow-hash = ["argon2"]
std = ["getrandom", "rand/std", "rand/std_rng", "voprf/std"]
2022-02-25 07:13:22 +01:00
x25519 = ["curve25519-dalek-3"]
2022-01-04 00:50:40 +01:00
x25519_fiat_u32 = ["x25519", "x25519-dalek/fiat_u32_backend"]
2022-01-06 06:19:02 +01:00
x25519_fiat_u64 = ["x25519", "x25519-dalek/fiat_u64_backend"]
2022-01-04 00:50:40 +01:00
# x25519-dalek isn't properly re-exposing `simd_backend`.
2022-01-06 06:19:02 +01:00
x25519_simd = [
2022-02-25 07:13:22 +01:00
"curve25519-dalek-3/simd_backend",
2022-01-06 06:19:02 +01:00
"x25519",
"x25519-dalek/nightly",
]
x25519_u32 = ["x25519", "x25519-dalek/u32_backend"]
x25519_u64 = ["x25519", "x25519-dalek/u64_backend"]
2020-06-11 14:56:34 -07:00
2020-06-05 09:35:14 -07:00
[dependencies]
2022-01-06 06:19:02 +01:00
argon2 = { version = "0.3", default-features = false, features = [
"alloc",
], optional = true }
2021-07-31 00:36:57 +02:00
constant_time_eq = "0.1"
2022-02-25 07:13:22 +01:00
curve25519-dalek = { version = "=4.0.0-pre.1", default-features = false, optional = true }
curve25519-dalek-3 = { version = "3", package = "curve25519-dalek", default-features = false, optional = true }
derive-where = { version = "=1.0.0-rc.3", features = ["zeroize-on-drop"] }
2022-01-06 00:10:57 +01:00
digest = "0.10"
2021-08-17 05:11:53 +02:00
displaydoc = { version = "0.2", default-features = false }
2022-02-25 07:13:22 +01:00
elliptic-curve = { version = "0.12.0-pre.1", features = ["hash2curve", "sec1"] }
2021-07-31 00:36:57 +02:00
generic-array = "0.14"
2021-08-17 05:11:53 +02:00
getrandom = { version = "0.2", optional = true }
2022-01-06 00:10:57 +01:00
hkdf = "0.12"
hmac = "0.12"
2021-08-12 06:25:07 +02:00
rand = { version = "0.8", default-features = false }
2022-01-06 06:19:02 +01:00
serde_ = { version = "1", package = "serde", default-features = false, features = [
"derive",
], optional = true }
2021-07-31 00:36:57 +02:00
subtle = { version = "2.3", default-features = false }
2022-02-25 07:13:22 +01:00
voprf = { version = "0.3", default-features = false, features = ["danger"] }
x25519-dalek = { version = "=2.0.0-pre.1", default-features = false, optional = true }
2021-07-31 00:36:57 +02:00
zeroize = { version = "1", features = ["zeroize_derive"] }
2020-06-05 09:35:14 -07:00
2021-08-17 05:11:53 +02:00
[target.'cfg(target_arch = "wasm32")'.dependencies]
getrandom = { version = "0.2", features = ["js"], optional = true }
2020-06-05 09:35:14 -07:00
[dev-dependencies]
2021-07-31 00:36:57 +02:00
base64 = "0.13"
bincode = "1"
2022-01-04 00:50:40 +01:00
chacha20poly1305 = "0.9"
2021-07-31 00:36:57 +02:00
criterion = "0.3"
hex = "0.4"
json = "0.12"
2021-07-31 00:36:57 +02:00
lazy_static = "1"
2022-02-25 07:13:22 +01:00
p256 = { version = "=0.11.0-pre.0", default-features = false, features = [
"hash2curve",
"voprf",
] }
2021-07-31 00:36:57 +02:00
proptest = "1"
2022-02-25 07:13:22 +01:00
rand = "0.8"
regex = "1"
2022-01-06 00:10:57 +01:00
rustyline = "9"
2022-01-06 06:19:02 +01:00
serde_json = "1"
sha2 = "0.10"
[[bench]]
harness = false
2022-01-06 06:19:02 +01:00
name = "opaque"
2022-02-25 07:13:22 +01:00
[package.metadata.docs.rs]
features = ["std", "slow-hash", "x25519_u64"]
targets = []
[patch.crates-io]
chacha20 = { git = "https://github.com/RustCrypto/stream-ciphers" }
chacha20poly1305 = { git = "https://github.com/khonsulabs/aeads", branch = "update-dependencies" }
derive-where = { git = "https://github.com/ModProg/derive-where" }
poly1305 = { git = "https://github.com/RustCrypto/universal-hashes" }
voprf = { git = "https://github.com/khonsulabs/voprf", branch = "v08" }