commonware-reshare 2026.4.0

Reshare a threshold secret over an epoched log.
1
2
3
4
5
6
7
8
9
10
//! This module contains the application logic for the resharing chain.

mod types;
pub use types::*;

mod core;
pub use core::Application;

mod scheme;
pub use scheme::{EdScheme, EpochProvider, Provider, ThresholdScheme};