pub trait HashDomains<C: CurveAffine>: Clone + Debug {
    fn Q(&self) -> C;
}
Expand description

Trait allowing circuit’s Sinsemilla HashDomains to be enumerated.

Required Methods

Returns the Q constant for this domain.

Implementors