Skip to content
Open
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
10 changes: 10 additions & 0 deletions schnorr_fun/src/frost/chilldkg/certpedpop/certificate.rs
Original file line number Diff line number Diff line change
Expand Up @@ -352,6 +352,16 @@ impl<S: CertificationScheme> Certifier<S> {
Ok(())
}

/// Get the aggregated keygen input
pub fn agg_input(&self) -> &encpedpop::AggKeygenInput {
&self.agg_input
}

/// Get the set of required keys for certification
pub fn required_keys(&self) -> &BTreeSet<Point> {
&self.required_keys
}

/// Check if all required certificates have been received
pub fn is_finished(&self) -> bool {
self.certificates.len() == self.required_keys.len()
Expand Down