use poulpy_core::{ GLWECopy, GLWEDecrypt, GLWEEncryptSk, GLWEPacking, GLWERotate, LWEFromGLWE, ScratchTakeCore, layouts::{ Base2K, Degree, GGLWEInfos, GGLWEPreparedToRef, GLWE, GLWEInfos, GLWEPlaintextLayout, GLWESecretPreparedToRef, GLWEToRef, LWEInfos, LWEToMut, Rank, TorusPrecision, prepared::GLWEAutomorphismKeyPrepared, }, }; use poulpy_hal::{ api::ModuleLogN, layouts::{Backend, Data, DataMut, DataRef, Scratch}, source::Source, }; use std::{collections::HashMap, marker::PhantomData}; use crate::tfhe::bdd_arithmetic::{FromBits, ToBits, UnsignedInteger}; /// An FHE ciphertext encrypting the bits of an [UnsignedInteger]. pub struct FheUint { pub(crate) bits: GLWE, pub(crate) _phantom: PhantomData, } impl FheUint, T> { pub fn alloc_from_infos(infos: &A) -> Self where A: GLWEInfos, { Self::alloc(infos.n(), infos.base2k(), infos.k(), infos.rank()) } pub fn alloc(n: Degree, base2k: Base2K, k: TorusPrecision, rank: Rank) -> Self { Self { bits: GLWE::alloc(n, base2k, k, rank), _phantom: PhantomData, } } } impl LWEInfos for FheUint { fn base2k(&self) -> poulpy_core::layouts::Base2K { self.bits.base2k() } fn k(&self) -> poulpy_core::layouts::TorusPrecision { self.bits.k() } fn n(&self) -> poulpy_core::layouts::Degree { self.bits.n() } } impl GLWEInfos for FheUint { fn rank(&self) -> poulpy_core::layouts::Rank { self.bits.rank() } } impl FheUint { pub fn encrypt_sk( &mut self, module: &M, data: T, sk: &S, source_xa: &mut Source, source_xe: &mut Source, scratch: &mut Scratch, ) where S: GLWESecretPreparedToRef + GLWEInfos, M: ModuleLogN + GLWEEncryptSk, Scratch: ScratchTakeCore, { #[cfg(debug_assertions)] { assert!(module.n().is_multiple_of(T::BITS as usize)); assert_eq!(self.n(), module.n() as u32); assert_eq!(sk.n(), module.n() as u32); } let mut data_bits: Vec = vec![0i64; module.n()]; let log_gap: usize = module.log_n() - T::LOG_BITS as usize; // Interleaves bytes for i in 0..T::BITS as usize { data_bits[T::bit_index(i) << log_gap] = data.bit(i) as i64 } let pt_infos = GLWEPlaintextLayout { n: self.n(), base2k: self.base2k(), k: 1_usize.into(), }; let (mut pt, scratch_1) = scratch.take_glwe_plaintext(&pt_infos); pt.encode_vec_i64(&data_bits, TorusPrecision(2)); self.bits .encrypt_sk(module, &pt, sk, source_xa, source_xe, scratch_1); } } impl FheUint { pub fn decrypt(&self, module: &M, sk: &S, scratch: &mut Scratch) -> T where S: GLWESecretPreparedToRef + GLWEInfos, M: ModuleLogN + GLWEDecrypt, Scratch: ScratchTakeCore, { #[cfg(debug_assertions)] { assert!(module.n().is_multiple_of(T::BITS as usize)); assert_eq!(self.n(), module.n() as u32); assert_eq!(sk.n(), module.n() as u32); } let pt_infos = GLWEPlaintextLayout { n: self.n(), base2k: self.base2k(), k: 1_usize.into(), }; let (mut pt, scratch_1) = scratch.take_glwe_plaintext(&pt_infos); self.bits.decrypt(module, &mut pt, sk, scratch_1); let mut data_bits: Vec = vec![0i64; module.n()]; pt.decode_vec_i64(&mut data_bits, TorusPrecision(2)); let mut bits: Vec = vec![0u8; T::BITS as usize]; let log_gap: usize = module.log_n() - T::LOG_BITS as usize; // Retrives from interleaved bytes for i in 0..T::BITS as usize { bits[i] = data_bits[T::bit_index(i) << log_gap] as u8 } T::from_bits(&bits) } } impl FheUint { #[allow(dead_code)] pub(crate) fn pack( &mut self, module: &M, mut tmp_res: Vec>, auto_keys: &HashMap>, scratch: &mut Scratch, ) where D1: DataMut, ATK: DataRef, M: ModuleLogN + GLWEPacking + GLWECopy, Scratch: ScratchTakeCore, { // Repacks the GLWE ciphertexts bits let log_gap: usize = module.log_n() - T::LOG_BITS as usize; let mut cts: HashMap> = HashMap::new(); for (i, ct) in tmp_res.iter_mut().enumerate().take(T::BITS as usize) { cts.insert(T::bit_index(i) << log_gap, ct); } module.glwe_pack(&mut cts, log_gap, auto_keys, scratch); // And copies the repacked ciphertext on the receiver. module.glwe_copy(&mut self.bits, cts.remove(&0).unwrap()); } } impl FheUint { pub fn get_bit(&self, module: &M, bit: usize, res: &mut L, ks: &K, scratch: &mut Scratch) where L: LWEToMut, K: GGLWEPreparedToRef + GGLWEInfos, M: ModuleLogN + LWEFromGLWE + GLWERotate, Scratch: ScratchTakeCore, { let log_gap: usize = module.log_n() - T::LOG_BITS as usize; res.to_mut() .from_glwe(module, self, T::bit_index(bit) << log_gap, ks, scratch); } } impl GLWEToRef for FheUint { fn to_ref(&self) -> GLWE<&[u8]> { self.bits.to_ref() } }