Trait tbs::Aggregatable

source ·
pub trait Aggregatable {
    type Aggregate;

    // Required method
    fn aggregate(&self, threshold: usize) -> Self::Aggregate;
}

Required Associated Types§

Required Methods§

source

fn aggregate(&self, threshold: usize) -> Self::Aggregate

Implementations on Foreign Types§

source§

impl Aggregatable for Vec<PublicKeyShare>

§

type Aggregate = AggregatePublicKey

source§

fn aggregate(&self, threshold: usize) -> Self::Aggregate

Implementors§