wip on generic traits

This commit is contained in:
Jean-Philippe Bossuat
2025-02-18 17:15:24 +01:00
parent d486e89761
commit 71f33f5983
7 changed files with 104 additions and 182 deletions

View File

@@ -1,18 +1,15 @@
use base2k::{ use base2k::{FFT64, Module, SvpPPolOps, VecZnx, VmpPMat, alloc_aligned_u8};
FFT64, Module, Sampling, SvpPPolOps, VecZnx, VecZnxBig, VecZnxDft, VecZnxDftOps, VmpPMat,
VmpPMatOps, alloc_aligned_u8,
};
use criterion::{BenchmarkId, Criterion, criterion_group, criterion_main}; use criterion::{BenchmarkId, Criterion, criterion_group, criterion_main};
use rlwe::{ use rlwe::{
ciphertext::{Ciphertext, new_gadget_ciphertext}, ciphertext::{Ciphertext, new_gadget_ciphertext},
elem::Elem, elem::Elem,
encryptor::{encrypt_grlwe_sk_thread_safe, encrypt_grlwe_sk_tmp_bytes}, encryptor::{encrypt_grlwe_sk_thread_safe, encrypt_grlwe_sk_tmp_bytes},
evaluator::gadget_product_tmp_bytes, evaluator::{gadget_product_inplace_thread_safe, gadget_product_tmp_bytes},
key_generator::gen_switching_key_thread_safe_tmp_bytes, key_generator::gen_switching_key_thread_safe_tmp_bytes,
keys::SecretKey, keys::SecretKey,
parameters::{Parameters, ParametersLiteral}, parameters::{Parameters, ParametersLiteral},
}; };
use sampling::source::{Source, new_seed}; use sampling::source::Source;
fn gadget_product_inplace(c: &mut Criterion) { fn gadget_product_inplace(c: &mut Criterion) {
fn gadget_product<'a>( fn gadget_product<'a>(
@@ -21,31 +18,8 @@ fn gadget_product_inplace(c: &mut Criterion) {
gadget_ct: &'a Ciphertext<VmpPMat>, gadget_ct: &'a Ciphertext<VmpPMat>,
tmp_bytes: &'a mut [u8], tmp_bytes: &'a mut [u8],
) -> Box<dyn FnMut() + 'a> { ) -> Box<dyn FnMut() + 'a> {
let factor: usize = 2;
let log_base2k: usize = 32;
let limbs: usize = 2;
let rows: usize = factor * limbs;
let cols: usize = factor * limbs + 1;
let pmat: VmpPMat = module.new_vmp_pmat(rows, cols);
let mut tmp_bytes: Vec<u8> =
alloc_aligned_u8(module.vmp_apply_dft_tmp_bytes(cols, rows, rows, cols), 64);
let mut a_dft: VecZnxDft = module.new_vec_znx_dft(rows);
let mut res_dft: VecZnxDft = module.new_vec_znx_dft(cols);
let mut res_big: VecZnxBig = res_dft.as_vec_znx_big();
let mut a: VecZnx = VecZnx::new(module.n(), rows);
let mut source = Source::new(new_seed());
module.fill_uniform(log_base2k, &mut a, limbs, &mut source);
Box::new(move || { Box::new(move || {
module.vec_znx_dft(&mut a_dft, &a, rows); gadget_product_inplace_thread_safe::<true, _>(module, elem, gadget_ct, tmp_bytes)
module.vmp_apply_dft_to_dft(&mut res_dft, &mut a_dft, &pmat, &mut tmp_bytes);
module.vec_znx_idft_tmp_a(&mut res_big, &mut res_dft, cols);
//gadget_product_inplace_thread_safe::<true>(module, elem, gadget_ct, tmp_bytes)
}) })
} }
@@ -55,9 +29,9 @@ fn gadget_product_inplace(c: &mut Criterion) {
for log_n in 10..11 { for log_n in 10..11 {
let params_lit: ParametersLiteral = ParametersLiteral { let params_lit: ParametersLiteral = ParametersLiteral {
log_n: log_n, log_n: log_n,
log_q: 54, log_q: 32,
log_p: 0, log_p: 0,
log_base2k: 7, log_base2k: 16,
log_scale: 20, log_scale: 20,
xe: 3.2, xe: 3.2,
xs: 128, xs: 128,
@@ -95,6 +69,8 @@ fn gadget_product_inplace(c: &mut Criterion) {
let mut sk0: SecretKey = SecretKey::new(params.module()); let mut sk0: SecretKey = SecretKey::new(params.module());
let mut sk1: SecretKey = SecretKey::new(params.module()); let mut sk1: SecretKey = SecretKey::new(params.module());
sk0.fill_ternary_hw(params.xs(), &mut source);
sk1.fill_ternary_hw(params.xs(), &mut source);
let mut source_xe: Source = Source::new([4; 32]); let mut source_xe: Source = Source::new([4; 32]);
let mut source_xa: Source = Source::new([5; 32]); let mut source_xa: Source = Source::new([5; 32]);

View File

@@ -1,7 +1,7 @@
use crate::elem::{Elem, ElemVecZnx, VecZnxCommon}; use crate::elem::{Elem, ElemVecZnx, VecZnxCommon};
use crate::parameters::Parameters; use crate::parameters::Parameters;
use crate::plaintext::Plaintext; use crate::plaintext::Plaintext;
use base2k::{Infos, Module, VecZnx, VecZnxApi, VmpPMat}; use base2k::{Infos, Module, VecZnx, VmpPMat};
pub struct Ciphertext<T>(pub Elem<T>); pub struct Ciphertext<T>(pub Elem<T>);
@@ -13,8 +13,20 @@ impl Ciphertext<VecZnx> {
impl<T> Ciphertext<T> impl<T> Ciphertext<T>
where where
T: VecZnxCommon, T: VecZnxCommon<Owned = T>,
Elem<T>: Infos + ElemVecZnx<T>, {
pub fn zero(&mut self) {
self.0.zero()
}
pub fn as_plaintext(&self) -> Plaintext<T> {
unsafe { Plaintext::<T>(std::ptr::read(&self.0)) }
}
}
impl<T> Ciphertext<T>
where
T: Infos,
{ {
pub fn n(&self) -> usize { pub fn n(&self) -> usize {
self.0.n() self.0.n()
@@ -47,14 +59,6 @@ where
pub fn log_scale(&self) -> usize { pub fn log_scale(&self) -> usize {
self.0.log_scale self.0.log_scale
} }
pub fn zero(&mut self) {
self.0.zero()
}
pub fn as_plaintext(&self) -> Plaintext<T> {
unsafe { Plaintext::<T>(std::ptr::read(&self.0)) }
}
} }
impl Parameters { impl Parameters {
@@ -70,7 +74,7 @@ pub fn new_gadget_ciphertext(
log_q: usize, log_q: usize,
) -> Ciphertext<VmpPMat> { ) -> Ciphertext<VmpPMat> {
let cols: usize = (log_q + log_base2k - 1) / log_base2k; let cols: usize = (log_q + log_base2k - 1) / log_base2k;
let mut elem: Elem<VmpPMat> = Elem::<VmpPMat>::new(module, log_base2k, rows, 2 * cols); let mut elem: Elem<VmpPMat> = Elem::<VmpPMat>::new(module, log_base2k, 1, rows, 2 * cols);
elem.log_q = log_q; elem.log_q = log_q;
Ciphertext(elem) Ciphertext(elem)
} }
@@ -82,29 +86,7 @@ pub fn new_rgsw_ciphertext(
log_q: usize, log_q: usize,
) -> Ciphertext<VmpPMat> { ) -> Ciphertext<VmpPMat> {
let cols: usize = (log_q + log_base2k - 1) / log_base2k; let cols: usize = (log_q + log_base2k - 1) / log_base2k;
let mut elem: Elem<VmpPMat> = Elem::<VmpPMat>::new(module, log_base2k, 2 * rows, 2 * cols); let mut elem: Elem<VmpPMat> = Elem::<VmpPMat>::new(module, log_base2k, 2, rows, 2 * cols);
elem.log_q = log_q; elem.log_q = log_q;
Ciphertext(elem) Ciphertext(elem)
} }
impl Ciphertext<VmpPMat> {
pub fn n(&self) -> usize {
self.0.n()
}
pub fn rows(&self) -> usize {
self.0.rows()
}
pub fn cols(&self) -> usize {
self.0.cols()
}
pub fn log_base2k(&self) -> usize {
self.0.log_base2k
}
pub fn log_q(&self) -> usize {
self.0.log_q
}
}

View File

@@ -5,9 +5,7 @@ use crate::{
parameters::Parameters, parameters::Parameters,
plaintext::Plaintext, plaintext::Plaintext,
}; };
use base2k::{ use base2k::{Module, SvpPPol, SvpPPolOps, VecZnxBigOps, VecZnxDft, VecZnxDftOps};
Infos, Module, SvpPPol, SvpPPolOps, VecZnx, VecZnxApi, VecZnxBigOps, VecZnxDft, VecZnxDftOps,
};
use std::cmp::min; use std::cmp::min;
pub struct Decryptor { pub struct Decryptor {
@@ -41,8 +39,8 @@ impl Parameters {
sk: &SvpPPol, sk: &SvpPPol,
tmp_bytes: &mut [u8], tmp_bytes: &mut [u8],
) where ) where
T: VecZnxCommon, T: VecZnxCommon<Owned = T>,
Elem<T>: Infos + ElemVecZnx<T>, Elem<T>: ElemVecZnx<T>,
{ {
decrypt_rlwe_thread_safe(self.module(), &mut res.0, &ct.0, sk, tmp_bytes) decrypt_rlwe_thread_safe(self.module(), &mut res.0, &ct.0, sk, tmp_bytes)
} }
@@ -55,8 +53,8 @@ pub fn decrypt_rlwe_thread_safe<T>(
sk: &SvpPPol, sk: &SvpPPol,
tmp_bytes: &mut [u8], tmp_bytes: &mut [u8],
) where ) where
T: VecZnxCommon, T: VecZnxCommon<Owned = T>,
Elem<T>: Infos + ElemVecZnx<T>, Elem<T>: ElemVecZnx<T>,
{ {
let cols: usize = a.cols(); let cols: usize = a.cols();

View File

@@ -3,12 +3,12 @@ use base2k::{Infos, Module, VecZnx, VecZnxApi, VecZnxBorrow, VecZnxOps, VmpPMat,
use crate::parameters::Parameters; use crate::parameters::Parameters;
impl Parameters { impl Parameters {
pub fn elem_from_bytes<T>(&self, log_q: usize, rows: usize, bytes: &mut [u8]) -> Elem<T> pub fn elem_from_bytes<T>(&self, log_q: usize, size: usize, bytes: &mut [u8]) -> Elem<T>
where where
T: VecZnxCommon, T: VecZnxCommon<Owned = T>,
Elem<T>: Infos + ElemVecZnx<T>, Elem<T>: ElemVecZnx<T>,
{ {
Elem::<T>::from_bytes(self.module(), self.log_base2k(), log_q, rows, bytes) Elem::<T>::from_bytes(self.module(), self.log_base2k(), log_q, size, bytes)
} }
} }
@@ -23,47 +23,45 @@ pub trait VecZnxCommon: VecZnxApi + Infos {}
impl VecZnxCommon for VecZnx {} impl VecZnxCommon for VecZnx {}
impl VecZnxCommon for VecZnxBorrow {} impl VecZnxCommon for VecZnxBorrow {}
pub trait ElemVecZnx<T: VecZnxCommon> { pub trait ElemVecZnx<T: VecZnxCommon<Owned = T>> {
fn from_bytes( fn from_bytes(
module: &Module, module: &Module,
log_base2k: usize, log_base2k: usize,
log_q: usize, log_q: usize,
rows: usize, size: usize,
bytes: &mut [u8], bytes: &mut [u8],
) -> Elem<T>; ) -> Elem<T>;
fn bytes_of(module: &Module, log_base2k: usize, log_q: usize, rows: usize) -> usize; fn bytes_of(module: &Module, log_base2k: usize, log_q: usize, size: usize) -> usize;
fn at(&self, i: usize) -> &T;
fn at_mut(&mut self, i: usize) -> &mut T;
fn zero(&mut self); fn zero(&mut self);
} }
impl<T> ElemVecZnx<T> for Elem<T> impl<T> ElemVecZnx<T> for Elem<T>
where where
T: VecZnxCommon<Owned = T>, T: VecZnxCommon<Owned = T>,
Elem<T>: Infos,
{ {
fn bytes_of(module: &Module, log_base2k: usize, log_q: usize, rows: usize) -> usize { fn bytes_of(module: &Module, log_base2k: usize, log_q: usize, size: usize) -> usize {
let cols = (log_q + log_base2k - 1) / log_base2k; let cols = (log_q + log_base2k - 1) / log_base2k;
module.n() * cols * (rows + 1) * 8 module.n() * cols * size * 8
} }
fn from_bytes( fn from_bytes(
module: &Module, module: &Module,
log_base2k: usize, log_base2k: usize,
log_q: usize, log_q: usize,
rows: usize, size: usize,
bytes: &mut [u8], bytes: &mut [u8],
) -> Elem<T> { ) -> Elem<T> {
assert!(rows > 0); assert!(size > 0);
let n: usize = module.n(); let n: usize = module.n();
assert!(bytes.len() >= Self::bytes_of(module, log_base2k, log_q, rows)); assert!(bytes.len() >= Self::bytes_of(module, log_base2k, log_q, size));
let mut value: Vec<T> = Vec::new(); let mut value: Vec<T> = Vec::new();
let limbs: usize = (log_q + log_base2k - 1) / log_base2k; let limbs: usize = (log_q + log_base2k - 1) / log_base2k;
let size = T::bytes_of(n, limbs); let elem_size = T::bytes_of(n, limbs);
let mut ptr: usize = 0; let mut ptr: usize = 0;
(0..rows).for_each(|_| { println!("{} {} {}", size, elem_size, bytes.len());
(0..size).for_each(|_| {
value.push(T::from_bytes(n, limbs, &mut bytes[ptr..])); value.push(T::from_bytes(n, limbs, &mut bytes[ptr..]));
ptr += size ptr += elem_size
}); });
Self { Self {
value, value,
@@ -73,22 +71,32 @@ where
} }
} }
fn at(&self, i: usize) -> &T {
assert!(i < self.rows());
&self.value[i]
}
fn at_mut(&mut self, i: usize) -> &mut T {
assert!(i < self.rows());
&mut self.value[i]
}
fn zero(&mut self) { fn zero(&mut self) {
self.value.iter_mut().for_each(|i| i.zero()); self.value.iter_mut().for_each(|i| i.zero());
} }
} }
impl<T> Elem<T> { impl<T: Infos> Elem<T> {
pub fn n(&self) -> usize {
self.value[0].n()
}
pub fn log_n(&self) -> usize {
self.value[0].log_n()
}
pub fn size(&self) -> usize {
self.value.len()
}
pub fn rows(&self) -> usize {
self.value[0].rows()
}
pub fn cols(&self) -> usize {
self.value[0].cols()
}
pub fn log_base2k(&self) -> usize { pub fn log_base2k(&self) -> usize {
self.log_base2k self.log_base2k
} }
@@ -100,39 +108,15 @@ impl<T> Elem<T> {
pub fn log_scale(&self) -> usize { pub fn log_scale(&self) -> usize {
self.log_scale self.log_scale
} }
}
impl Infos for Elem<VecZnx> { pub fn at(&self, i: usize) -> &T {
fn n(&self) -> usize { assert!(i < self.size());
self.value[0].n() &self.value[i]
} }
fn log_n(&self) -> usize { pub fn at_mut(&mut self, i: usize) -> &mut T {
self.value[0].log_n() assert!(i < self.size());
} &mut self.value[i]
fn rows(&self) -> usize {
self.value.len()
}
fn cols(&self) -> usize {
self.value[0].cols()
}
}
impl Infos for Elem<VecZnxBorrow> {
fn n(&self) -> usize {
self.value[0].n()
}
fn log_n(&self) -> usize {
self.value[0].log_n()
}
fn rows(&self) -> usize {
self.value.len()
}
fn cols(&self) -> usize {
self.value[0].cols()
} }
} }
@@ -151,30 +135,14 @@ impl Elem<VecZnx> {
} }
} }
impl Infos for Elem<VmpPMat> {
fn n(&self) -> usize {
self.value[0].n()
}
fn log_n(&self) -> usize {
self.value[0].log_n()
}
fn rows(&self) -> usize {
self.value[0].rows()
}
fn cols(&self) -> usize {
self.value[0].cols()
}
}
impl Elem<VmpPMat> { impl Elem<VmpPMat> {
pub fn new(module: &Module, log_base2k: usize, rows: usize, cols: usize) -> Self { pub fn new(module: &Module, log_base2k: usize, size: usize, rows: usize, cols: usize) -> Self {
assert!(rows > 0); assert!(rows > 0);
assert!(cols > 0); assert!(cols > 0);
let mut value: Vec<VmpPMat> = Vec::new();
(0..size).for_each(|_| value.push(module.new_vmp_pmat(rows, cols)));
Self { Self {
value: Vec::from([module.new_vmp_pmat(rows, cols); 1]), value: value,
log_q: 0, log_q: 0,
log_base2k: log_base2k, log_base2k: log_base2k,
log_scale: 0, log_scale: 0,

View File

@@ -5,8 +5,8 @@ use crate::parameters::Parameters;
use crate::plaintext::Plaintext; use crate::plaintext::Plaintext;
use base2k::sampling::Sampling; use base2k::sampling::Sampling;
use base2k::{ use base2k::{
Infos, Module, Scalar, SvpPPol, SvpPPolOps, VecZnx, VecZnxApi, VecZnxBig, VecZnxBigOps, Module, Scalar, SvpPPol, SvpPPolOps, VecZnx, VecZnxApi, VecZnxBig, VecZnxBigOps, VecZnxBorrow,
VecZnxBorrow, VecZnxDft, VecZnxDftOps, VecZnxOps, VmpPMat, VmpPMatOps, cast_mut, VecZnxDft, VecZnxDftOps, VecZnxOps, VmpPMat, VmpPMatOps, cast_mut,
}; };
use sampling::source::{Source, new_seed}; use sampling::source::{Source, new_seed};
@@ -55,8 +55,8 @@ impl EncryptorSk {
ct: &mut Ciphertext<T>, ct: &mut Ciphertext<T>,
pt: Option<&Plaintext<T>>, pt: Option<&Plaintext<T>>,
) where ) where
T: VecZnxCommon, T: VecZnxCommon<Owned = T>,
Elem<T>: Infos + ElemVecZnx<T>, Elem<T>: ElemVecZnx<T>,
{ {
assert!( assert!(
self.initialized == true, self.initialized == true,
@@ -81,8 +81,8 @@ impl EncryptorSk {
source_xe: &mut Source, source_xe: &mut Source,
tmp_bytes: &mut [u8], tmp_bytes: &mut [u8],
) where ) where
T: VecZnxCommon, T: VecZnxCommon<Owned = T>,
Elem<T>: Infos + ElemVecZnx<T>, Elem<T>: ElemVecZnx<T>,
{ {
assert!( assert!(
self.initialized == true, self.initialized == true,
@@ -106,8 +106,8 @@ impl Parameters {
source_xe: &mut Source, source_xe: &mut Source,
tmp_bytes: &mut [u8], tmp_bytes: &mut [u8],
) where ) where
T: VecZnxCommon, T: VecZnxCommon<Owned = T>,
Elem<T>: Infos + ElemVecZnx<T>, Elem<T>: ElemVecZnx<T>,
{ {
encrypt_rlwe_sk_thread_safe( encrypt_rlwe_sk_thread_safe(
self.module(), self.module(),
@@ -137,8 +137,8 @@ pub fn encrypt_rlwe_sk_thread_safe<T>(
sigma: f64, sigma: f64,
tmp_bytes: &mut [u8], tmp_bytes: &mut [u8],
) where ) where
T: VecZnxCommon, T: VecZnxCommon<Owned = T>,
Elem<T>: Infos + ElemVecZnx<T>, Elem<T>: ElemVecZnx<T>,
{ {
let cols: usize = ct.cols(); let cols: usize = ct.cols();
let log_base2k: usize = ct.log_base2k(); let log_base2k: usize = ct.log_base2k();

View File

@@ -2,9 +2,7 @@ use crate::{
ciphertext::Ciphertext, ciphertext::Ciphertext,
elem::{Elem, ElemVecZnx, VecZnxCommon}, elem::{Elem, ElemVecZnx, VecZnxCommon},
}; };
use base2k::{ use base2k::{Module, VecZnxBig, VecZnxBigOps, VecZnxDft, VecZnxDftOps, VmpPMat, VmpPMatOps};
Infos, Module, VecZnxApi, VecZnxBig, VecZnxBigOps, VecZnxDft, VecZnxDftOps, VmpPMat, VmpPMatOps,
};
use std::cmp::min; use std::cmp::min;
pub fn gadget_product_tmp_bytes( pub fn gadget_product_tmp_bytes(
@@ -22,14 +20,14 @@ pub fn gadget_product_tmp_bytes(
+ 2 * module.bytes_of_vec_znx_dft(gct_cols) + 2 * module.bytes_of_vec_znx_dft(gct_cols)
} }
pub fn gadget_product_inplace_thread_safe<const OVERWRITE: bool, T: VecZnxApi<Owned = T> + Infos>( pub fn gadget_product_inplace_thread_safe<const OVERWRITE: bool, T>(
module: &Module, module: &Module,
res: &mut Elem<T>, res: &mut Elem<T>,
b: &Ciphertext<VmpPMat>, b: &Ciphertext<VmpPMat>,
tmp_bytes: &mut [u8], tmp_bytes: &mut [u8],
) where ) where
T: VecZnxCommon, T: VecZnxCommon<Owned = T>,
Elem<T>: Infos + ElemVecZnx<T>, Elem<T>: ElemVecZnx<T>,
{ {
unsafe { unsafe {
let a_ptr: *const T = res.at(1) as *const T; let a_ptr: *const T = res.at(1) as *const T;
@@ -51,15 +49,15 @@ pub fn gadget_product_inplace_thread_safe<const OVERWRITE: bool, T: VecZnxApi<Ow
/// ///
/// res = sum[min(a_ncols, b_nrows)] decomp(a, i) * (-B[i]s + m * 2^{-k*i} + E[i], B[i]) /// res = sum[min(a_ncols, b_nrows)] decomp(a, i) * (-B[i]s + m * 2^{-k*i} + E[i], B[i])
/// = (cs + m * a + e, c) with min(res_limbs, b_cols) limbs. /// = (cs + m * a + e, c) with min(res_limbs, b_cols) limbs.
pub fn gadget_product_thread_safe<const OVERWRITE: bool, T: VecZnxApi<Owned = T> + Infos>( pub fn gadget_product_thread_safe<const OVERWRITE: bool, T>(
module: &Module, module: &Module,
res: &mut Elem<T>, res: &mut Elem<T>,
a: &T, a: &T,
b: &Ciphertext<VmpPMat>, b: &Ciphertext<VmpPMat>,
tmp_bytes: &mut [u8], tmp_bytes: &mut [u8],
) where ) where
T: VecZnxCommon, T: VecZnxCommon<Owned = T>,
Elem<T>: Infos + ElemVecZnx<T>, Elem<T>: ElemVecZnx<T>,
{ {
let log_base2k: usize = b.log_base2k(); let log_base2k: usize = b.log_base2k();
let rows: usize = min(b.rows(), a.cols()); let rows: usize = min(b.rows(), a.cols());
@@ -112,15 +110,15 @@ pub fn gadget_product_thread_safe<const OVERWRITE: bool, T: VecZnxApi<Owned = T>
} }
} }
pub fn rgsw_product_thread_safe<T: VecZnxApi<Owned = T> + Infos>( pub fn rgsw_product_thread_safe<T>(
module: &Module, module: &Module,
res: &mut Elem<T>, res: &mut Elem<T>,
a: &Ciphertext<T>, a: &Ciphertext<T>,
b: &Ciphertext<VmpPMat>, b: &Ciphertext<VmpPMat>,
tmp_bytes: &mut [u8], tmp_bytes: &mut [u8],
) where ) where
T: VecZnxCommon, T: VecZnxCommon<Owned = T>,
Elem<T>: Infos + ElemVecZnx<T>, Elem<T>: ElemVecZnx<T>,
{ {
let log_base2k: usize = b.log_base2k(); let log_base2k: usize = b.log_base2k();
let rows: usize = min(b.rows(), a.cols()); let rows: usize = min(b.rows(), a.cols());

View File

@@ -1,7 +1,7 @@
use crate::ciphertext::Ciphertext; use crate::ciphertext::Ciphertext;
use crate::elem::{Elem, ElemVecZnx, VecZnxCommon}; use crate::elem::{Elem, ElemVecZnx, VecZnxCommon};
use crate::parameters::Parameters; use crate::parameters::Parameters;
use base2k::{Infos, Module, VecZnx, VecZnxApi}; use base2k::{Module, VecZnx};
pub struct Plaintext<T>(pub Elem<T>); pub struct Plaintext<T>(pub Elem<T>);
@@ -12,16 +12,16 @@ impl Parameters {
pub fn bytes_of_plaintext<T>(&self, log_q: usize) -> usize pub fn bytes_of_plaintext<T>(&self, log_q: usize) -> usize
where where
T: VecZnxCommon, T: VecZnxCommon<Owned = T>,
Elem<T>: Infos + ElemVecZnx<T>, Elem<T>: ElemVecZnx<T>,
{ {
Elem::<T>::bytes_of(self.module(), self.log_base2k(), log_q, 1) Elem::<T>::bytes_of(self.module(), self.log_base2k(), log_q, 1)
} }
pub fn plaintext_from_bytes<T>(&self, log_q: usize, bytes: &mut [u8]) -> Plaintext<T> pub fn plaintext_from_bytes<T>(&self, log_q: usize, bytes: &mut [u8]) -> Plaintext<T>
where where
T: VecZnxCommon, T: VecZnxCommon<Owned = T>,
Elem<T>: Infos + ElemVecZnx<T>, Elem<T>: ElemVecZnx<T>,
{ {
Plaintext::<T>(self.elem_from_bytes::<T>(log_q, 1, bytes)) Plaintext::<T>(self.elem_from_bytes::<T>(log_q, 1, bytes))
} }
@@ -35,8 +35,8 @@ impl Plaintext<VecZnx> {
impl<T> Plaintext<T> impl<T> Plaintext<T>
where where
T: VecZnxCommon, T: VecZnxCommon<Owned = T>,
Elem<T>: Infos + ElemVecZnx<T>, Elem<T>: ElemVecZnx<T>,
{ {
pub fn bytes_of(module: &Module, log_base2k: usize, log_q: usize) -> usize { pub fn bytes_of(module: &Module, log_base2k: usize, log_q: usize) -> usize {
Elem::<T>::bytes_of(module, log_base2k, log_q, 1) Elem::<T>::bytes_of(module, log_base2k, log_q, 1)