GGSWAutomorphism

Trait GGSWAutomorphism 

Source
pub trait GGSWAutomorphism<BE: Backend>
where Self: GLWEAutomorphism<BE> + GGSWExpandRows<BE>,
{ // Provided methods fn ggsw_automorphism_tmp_bytes<R, A, K, T>( &self, res_infos: &R, a_infos: &A, key_infos: &K, tsk_infos: &T, ) -> usize where R: GGSWInfos, A: GGSWInfos, K: GGLWEInfos, T: GGLWEInfos { ... } fn ggsw_automorphism<R, A, K, T>( &self, res: &mut R, a: &A, key: &K, tsk: &T, scratch: &mut Scratch<BE>, ) where R: GGSWToMut + GGSWInfos, A: GGSWToRef + GGSWInfos, K: GetGaloisElement + GGLWEPreparedToRef<BE> + GGLWEInfos, T: GGLWEToGGSWKeyPreparedToRef<BE> + GGLWEInfos, Scratch<BE>: ScratchTakeCore<BE> { ... } fn ggsw_automorphism_inplace<R, K, T>( &self, res: &mut R, key: &K, tsk: &T, scratch: &mut Scratch<BE>, ) where R: GGSWToMut, K: GetGaloisElement + GGLWEPreparedToRef<BE> + GGLWEInfos, T: GGLWEToGGSWKeyPreparedToRef<BE>, Scratch<BE>: ScratchTakeCore<BE> { ... } }

Provided Methods§

Source

fn ggsw_automorphism_tmp_bytes<R, A, K, T>( &self, res_infos: &R, a_infos: &A, key_infos: &K, tsk_infos: &T, ) -> usize

Source

fn ggsw_automorphism<R, A, K, T>( &self, res: &mut R, a: &A, key: &K, tsk: &T, scratch: &mut Scratch<BE>, )

Source

fn ggsw_automorphism_inplace<R, K, T>( &self, res: &mut R, key: &K, tsk: &T, scratch: &mut Scratch<BE>, )

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

Source§

impl<BE: Backend> GGSWAutomorphism<BE> for Module<BE>
where Self: GLWEAutomorphism<BE> + GGSWExpandRows<BE>,

Implementors§