Trait nimue::plugins::group::GroupIOPattern

source ·
pub trait GroupIOPattern<G: Group> {
    // Required method
    fn add_points(self, count: usize, label: &str) -> Self;
}
Expand description

Send group elements in the IO pattern.

Required Methods§

source

fn add_points(self, count: usize, label: &str) -> Self

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<G, H> GroupIOPattern<G> for IOPattern<H>
where G: Group + GroupEncoding, G::Repr: AsRef<[u8]>, H: DuplexHash,