mirror of
https://github.com/serai-dex/serai.git
synced 2025-01-09 12:29:27 +00:00
ad470bc969
This commit greatly expands the usage of black_box/zeroize on bits, as it originally should have. It is likely overkill, leading to less efficient code generation, yet does its best to be comprehensive where comprehensiveness is extremely annoying to achieve. In the future, this usage of black_box may be desirable to move to its own crate. Credit to @AaronFeickert for identifying the original commit was incomplete.
52 lines
1.5 KiB
TOML
52 lines
1.5 KiB
TOML
[package]
|
|
name = "dleq"
|
|
version = "0.2.0"
|
|
description = "Implementation of single and cross-curve Discrete Log Equality proofs"
|
|
license = "MIT"
|
|
repository = "https://github.com/serai-dex/serai/tree/develop/crypto/dleq"
|
|
authors = ["Luke Parker <lukeparker5132@gmail.com>"]
|
|
edition = "2021"
|
|
|
|
[package.metadata.docs.rs]
|
|
all-features = true
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
|
|
|
[dependencies]
|
|
thiserror = { version = "1", optional = true }
|
|
rand_core = "0.6"
|
|
|
|
zeroize = { version = "^1.5", features = ["zeroize_derive"] }
|
|
|
|
digest = "0.10"
|
|
|
|
transcript = { package = "flexible-transcript", path = "../transcript", version = "0.2" }
|
|
|
|
ff = "0.12"
|
|
group = "0.12"
|
|
|
|
multiexp = { path = "../multiexp", version = "0.2", features = ["batch"], optional = true }
|
|
|
|
[dev-dependencies]
|
|
hex-literal = "0.3"
|
|
|
|
blake2 = "0.10"
|
|
|
|
k256 = { version = "0.12", features = ["arithmetic", "bits"] }
|
|
dalek-ff-group = { path = "../dalek-ff-group" }
|
|
|
|
transcript = { package = "flexible-transcript", path = "../transcript", features = ["recommended"] }
|
|
|
|
[features]
|
|
std = []
|
|
serialize = ["std"]
|
|
|
|
# Needed for cross-group DLEqs
|
|
black_box = []
|
|
secure_capacity_difference = []
|
|
experimental = ["std", "thiserror", "multiexp"]
|
|
|
|
# Only applies to experimental, yet is default to ensure security
|
|
# experimental doesn't mandate it itself in case two curves with extreme
|
|
# capacity differences are desired to be used together, in which case the user
|
|
# must specify experimental without default features
|
|
default = ["secure_capacity_difference"]
|