[package]
edition = "2024"
name = "jevil"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A stateless few-time signature scheme with a sharp cliff at the (n*+1)-th signature."
documentation = "https://docs.rs/jevil"
readme = "README.md"
keywords = [
"cryptography",
"signature",
"post-quantum",
"few-time",
"whir",
]
categories = ["cryptography"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/symbolicsoft/jevil"
[lib]
name = "jevil"
path = "src/lib.rs"
[[example]]
name = "basic"
path = "examples/basic.rs"
[[example]]
name = "bench"
path = "examples/bench.rs"
[[example]]
name = "cliff"
path = "examples/cliff.rs"
[[test]]
name = "cliff"
path = "tests/cliff.rs"
[[test]]
name = "determinism"
path = "tests/determinism.rs"
[[test]]
name = "kat"
path = "tests/kat.rs"
[[test]]
name = "multi_opening"
path = "tests/multi_opening.rs"
[[test]]
name = "ntt_sweep"
path = "tests/ntt_sweep.rs"
[[test]]
name = "positions"
path = "tests/positions.rs"
[[test]]
name = "round_trip"
path = "tests/round_trip.rs"
[[test]]
name = "slow"
path = "tests/slow.rs"
[[test]]
name = "tampering"
path = "tests/tampering.rs"
[dependencies.p3-field]
version = "0.5"
[dependencies.p3-goldilocks]
version = "0.5"
[dependencies.p3-poseidon2]
version = "0.5"
[dependencies.p3-symmetric]
version = "0.5"
[dependencies.rand]
version = "0.10"
[dependencies.shake]
version = "0.1"
[dependencies.spongefish]
version = "0.7"
features = [
"ark-ff",
"derive",
]
[dependencies.thiserror]
version = "2"
[dependencies.zeroize]
version = "1.8"
features = ["derive"]
[dev-dependencies.hex]
version = "0.4"
[dev-dependencies.rand_chacha]
version = "0.10"
[dev-dependencies.sha2]
version = "0.11"
[profile.release]
opt-level = 3
lto = "thin"
codegen-units = 1