Trait franklin_crypto::rescue::SBox

source ·
pub trait SBox<E: Engine>:
    Sized
    + Clone
    + Debug {
    // Required method
    fn apply(&self, elements: &mut [E::Fr]);
}

Required Methods§

source

fn apply(&self, elements: &mut [E::Fr])

Object Safety§

This trait is not object safe.

Implementors§

source§

impl<E: Engine> SBox<E> for CubicSBox<E>

source§

impl<E: Engine> SBox<E> for InversionSBox<E>

source§

impl<E: Engine> SBox<E> for PowerSBox<E>

source§

impl<E: Engine> SBox<E> for QuinticSBox<E>