confium-tc-core 0.3.0

Core threshold cryptography session primitives — the minimal interface for scheme plugins
Documentation
1
2
3
4
5
6
7
8
9
//! Built-in threshold-cryptography schemes that ship with `confium-tc`.
//!
//! Real TC schemes (FROST, GG18, …) live in plugin crates. The scheme here
//! is a deterministic mock used to exercise the full session lifecycle
//! end-to-end without any real cryptographic math.

pub mod mock;

pub use mock::MockTcSigScheme;