GLWEAutomorphismKeyCompressedEncryptSk

Trait GLWEAutomorphismKeyCompressedEncryptSk 

Source
pub trait GLWEAutomorphismKeyCompressedEncryptSk<BE: Backend> {
    // Required methods
    fn glwe_automorphism_key_compressed_encrypt_sk_tmp_bytes<A>(
        &self,
        infos: &A,
    ) -> usize
       where A: GGLWEInfos;
    fn glwe_automorphism_key_compressed_encrypt_sk<R, S>(
        &self,
        res: &mut R,
        p: i64,
        sk: &S,
        seed_xa: [u8; 32],
        source_xe: &mut Source,
        scratch: &mut Scratch<BE>,
    )
       where R: GGLWECompressedToMut + GGLWECompressedSeedMut + SetGaloisElement + GGLWEInfos,
             S: GLWESecretToRef + GLWEInfos;
}

Required Methods§

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> GLWEAutomorphismKeyCompressedEncryptSk<BE> for Module<BE>

Implementors§