make enc and dec variant specific

This commit is contained in:
Janmajaya Mall
2024-06-17 20:13:32 +05:30
parent 691995f1c3
commit 88fdc6ac5c
9 changed files with 905 additions and 847 deletions

View File

@@ -1,7 +1,7 @@
use itertools::Itertools;
use crate::{
bool::keys::{ClientKey, PublicKey},
bool::{ClientKey, PublicKey},
Decryptor, Encryptor, MultiPartyDecryptor,
};
@@ -97,10 +97,7 @@ mod frontend {
eight_bit_mul,
};
use crate::{
bool::{
evaluator::{self, BoolEvaluator, BooleanGates},
keys::{ServerKeyEvaluationDomain, ShoupServerKeyEvaluationDomain},
},
bool::evaluator::{BoolEvaluator, BooleanGates},
utils::{Global, WithLocal},
};