Skip to main content

chains_sdk/threshold/
mod.rs

1//! **Threshold Signatures** — Multi-party Schnorr signing protocols.
2//!
3//! This module contains implementations of threshold and multi-party
4//! signature schemes for secp256k1:
5//!
6//! - **FROST** (`frost`) — T-of-N threshold Schnorr signatures (RFC 9591)
7//! - **MuSig2** (`musig2`) — N-of-N multi-party Schnorr signatures (BIP-327)
8
9#[cfg(feature = "frost")]
10pub mod frost;
11
12#[cfg(feature = "musig2")]
13pub mod musig2;