Skip to content

Telescope-ALBA proof for STM #2354

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft
wants to merge 4 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
122 changes: 122 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions mithril-stm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ include = ["**/*.rs", "Cargo.toml", "README.md", ".gitignore"]
crate-type = ["lib", "cdylib", "staticlib"]

[dependencies]
alba = { git = "https://github.com/cardano-scaling/alba.git", branch = "curiecrypt/element-with-index" }
blake2 = "0.10.6"
# Enforce blst portable feature for runtime detection of Intel ADX instruction set.
blst = { version = "0.3.14", features = ["portable"] }
Expand All @@ -22,6 +23,8 @@ rand_core = "0.6.4"
rayon = "1.10.0"
serde = { version = "1.0.219", features = ["rc", "derive"] }
thiserror = "2.0.12"
sha2 = "0.10.6"
statrs = "0.16"

[target.'cfg(not(any(target_family = "wasm", windows)))'.dependencies]
# only unix supports the rug backend
Expand Down
1 change: 1 addition & 0 deletions mithril-stm/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,4 @@ pub mod bls_multi_signature;

#[cfg(not(feature = "benchmark-internals"))]
mod bls_multi_signature;
mod stm_telescope;
4 changes: 4 additions & 0 deletions mithril-stm/src/stm_telescope/mod.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
//! Sterling: Integrate centralized telescope and Mithril-STM

pub mod sterling;
mod utils;
Loading
Loading