mirror of
https://github.com/arnaucube/poulpy.git
synced 2026-02-10 21:26:41 +01:00
wip
This commit is contained in:
committed by
Jean-Philippe Bossuat
parent
f72363cc4b
commit
2b2b994f7d
@@ -14,7 +14,7 @@ pub use lut::*;
|
||||
|
||||
pub mod tests;
|
||||
|
||||
use poulpy_core::layouts::{GLWECiphertext, LWECiphertext};
|
||||
use poulpy_core::layouts::{GLWE, LWE};
|
||||
use poulpy_hal::layouts::{Backend, DataMut, DataRef, Module, Scratch};
|
||||
|
||||
pub trait BlindRotationAlgo {}
|
||||
@@ -27,8 +27,8 @@ pub trait BlincRotationExecute<B: Backend> {
|
||||
fn execute<DR: DataMut, DI: DataRef>(
|
||||
&self,
|
||||
module: &Module<B>,
|
||||
res: &mut GLWECiphertext<DR>,
|
||||
lwe: &LWECiphertext<DI>,
|
||||
res: &mut GLWE<DR>,
|
||||
lwe: &LWE<DI>,
|
||||
lut: &LookUpTable,
|
||||
scratch: &mut Scratch<B>,
|
||||
);
|
||||
|
||||
Reference in New Issue
Block a user