Browse Source

make non-interactive/interactive batched fhe bools struct public

par-agg-key-shares
Janmajaya Mall 8 months ago
parent
commit
a1f966a172
2 changed files with 2 additions and 2 deletions
  1. +1
    -1
      src/bool/mod.rs
  2. +1
    -1
      src/bool/ni_mp_api.rs

+ 1
- 1
src/bool/mod.rs

@ -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,
} }

+ 1
- 1
src/bool/ni_mp_api.rs

@ -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,

Loading…
Cancel
Save