mod impl_enc_dec { use crate::{Decryptor, Encryptor}; use super::super::keys::SinglePartyClientKey; impl Encryptor> for K where K: SinglePartyClientKey, { fn encrypt(&self, m: &bool) -> Vec { todo!() // BoolEvaluator::with_local(|e| e.sk_encrypt(*m, self)) } } impl Decryptor> for K where K: SinglePartyClientKey, { fn decrypt(&self, c: &Vec) -> bool { todo!() // BoolEvaluator::with_local(|e| e.sk_decrypt(c, self)) } } }