GLWEPublicKeyGenerate

Trait GLWEPublicKeyGenerate 

Source
pub trait GLWEPublicKeyGenerate<BE: Backend> {
    // Required method
    fn glwe_public_key_generate<R, S>(
        &self,
        res: &mut R,
        sk: &S,
        source_xa: &mut Source,
        source_xe: &mut Source,
    )
       where R: GLWEToMut + GetDistributionMut + GLWEInfos,
             S: GLWESecretPreparedToRef<BE> + GetDistribution;
}

Required Methods§

Source

fn glwe_public_key_generate<R, S>( &self, res: &mut R, sk: &S, source_xa: &mut Source, source_xe: &mut Source, )

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

Source§

fn glwe_public_key_generate<R, S>( &self, res: &mut R, sk: &S, source_xa: &mut Source, source_xe: &mut Source, )

Implementors§