Trait zero_crypto::behave::Group

source ·
pub trait Group: PartialEq + Eq {
    const GENERATOR: Self;
    const IDENTITY: Self;

    fn invert(self) -> Option<Self>
    where
        Self: Sized
; }
Expand description

This is group trait This has generator, identity and inverse

Required Associated Constants

Required Methods

Implementors