make non-interactive/interactive batched fhe bools struct public

This commit is contained in:
Janmajaya Mall
2024-07-24 10:55:09 -07:00
parent 97daa79f5c
commit a1f966a172
2 changed files with 2 additions and 2 deletions

View File

@@ -242,7 +242,7 @@ mod common_mp_enc_dec {
/// ///
/// Bool ciphertext at `index` can be extracted from the coefficient at `index % /// Bool ciphertext at `index` can be extracted from the coefficient at `index %
/// N` of `index / N`th RLWE ciphertext. /// N` of `index / N`th RLWE ciphertext.
pub(crate) struct BatchedFheBools<C> { pub struct BatchedFheBools<C> {
data: Vec<C>, data: Vec<C>,
count: usize, count: usize,
} }

View File

@@ -180,7 +180,7 @@ impl Global for RuntimeServerKey {
} }
/// `Self::data` stores collection of seeded RLWE ciphertexts encrypted unser user j's RLWE secret `u_j`. /// `Self::data` stores collection of seeded RLWE ciphertexts encrypted unser user j's RLWE secret `u_j`.
pub(crate) struct NonInteractiveSeededFheBools<C, S> { pub struct NonInteractiveSeededFheBools<C, S> {
data: Vec<C>, data: Vec<C>,
seed: S, seed: S,
count: usize, count: usize,