1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
use crate::core_crypto::backward_compatibility::entities::ntt_ggsw_ciphertext::NttGgswCiphertextVersions;
use crate::core_crypto::commons::math::decomposition::DecompositionLevel;
use crate::core_crypto::commons::numeric::UnsignedInteger;
use crate::core_crypto::commons::parameters::{
DecompositionBaseLog, DecompositionLevelCount, GlweSize, PolynomialSize,
};
use crate::core_crypto::commons::traits::{Container, ContainerMut, Split};
pub use crate::core_crypto::entities::ggsw_ciphertext::{
ggsw_ciphertext_size, ggsw_level_matrix_size,
};
pub use crate::core_crypto::entities::glwe_ciphertext::glwe_ciphertext_size;
use aligned_vec::{avec, ABox};
use tfhe_versionable::Versionize;
/// A [`GGSW ciphertext in the Ntt domain`](`crate::core_crypto::entities::GgswCiphertext`).
///
/// See [`the formal definition of a GGSW
/// ciphertext`](`crate::core_crypto::entities::GgswCiphertext#formal-definition`)
#[derive(Clone, Copy, Debug, PartialEq, Eq, serde::Serialize, serde::Deserialize, Versionize)]
#[versionize(NttGgswCiphertextVersions)]
pub struct NttGgswCiphertext<C: Container>
where
C::Element: UnsignedInteger,
{
data: C,
polynomial_size: PolynomialSize,
glwe_size: GlweSize,
decomposition_base_log: DecompositionBaseLog,
decomposition_level_count: DecompositionLevelCount,
}
impl<T: UnsignedInteger, C: Container<Element = T>> AsRef<[T]> for NttGgswCiphertext<C> {
fn as_ref(&self) -> &[T] {
self.data.as_ref()
}
}
impl<T: UnsignedInteger, C: ContainerMut<Element = T>> AsMut<[T]> for NttGgswCiphertext<C> {
fn as_mut(&mut self) -> &mut [T] {
self.data.as_mut()
}
}
impl<Scalar: UnsignedInteger, C: Container<Element = Scalar>> NttGgswCiphertext<C> {
/// Create a [`NttGgswCiphertext`] from an existing container.
///
/// # Note
///
/// This docstring exhibits [`NttGgswCiphertext`] primitives usage.
///
/// ```rust
/// use tfhe::core_crypto::prelude::*;
///
/// // DISCLAIMER: these toy example parameters are not guaranteed to be secure or yield correct
/// // computations
/// // Define parameters for NttGgswCiphertext creation
/// let glwe_size = GlweSize(2);
/// let polynomial_size = PolynomialSize(1024);
/// let decomp_base_log = DecompositionBaseLog(8);
/// let decomp_level_count = DecompositionLevelCount(3);
/// let ciphertext_modulus = CiphertextModulus::try_new((1 << 64) - (1 << 32) + 1).unwrap();
///
/// // Create a new GgswCiphertext
/// let ggsw = GgswCiphertext::new(
/// 0u64,
/// glwe_size,
/// polynomial_size,
/// decomp_base_log,
/// decomp_level_count,
/// ciphertext_modulus,
/// );
///
/// assert_eq!(ggsw.glwe_size(), glwe_size);
/// assert_eq!(ggsw.polynomial_size(), polynomial_size);
/// assert_eq!(ggsw.decomposition_base_log(), decomp_base_log);
/// assert_eq!(ggsw.decomposition_level_count(), decomp_level_count);
/// assert_eq!(ggsw.ciphertext_modulus(), ciphertext_modulus);
/// assert_eq!(
/// ggsw.ggsw_level_matrix_size(),
/// ggsw_level_matrix_size(glwe_size, polynomial_size)
/// );
///
/// // Demonstrate how to recover the allocated container
/// let underlying_container: Vec<u64> = ggsw.into_container();
///
/// // Recreate a ciphertext using from_container
/// let ggsw = GgswCiphertext::from_container(
/// underlying_container,
/// glwe_size,
/// polynomial_size,
/// decomp_base_log,
/// ciphertext_modulus,
/// );
///
/// assert_eq!(ggsw.glwe_size(), glwe_size);
/// assert_eq!(ggsw.polynomial_size(), polynomial_size);
/// assert_eq!(ggsw.decomposition_base_log(), decomp_base_log);
/// assert_eq!(ggsw.decomposition_level_count(), decomp_level_count);
/// assert_eq!(ggsw.ciphertext_modulus(), ciphertext_modulus);
/// assert_eq!(
/// ggsw.ggsw_level_matrix_size(),
/// ggsw_level_matrix_size(glwe_size, polynomial_size)
/// );
/// ```
pub fn from_container(
data: C,
glwe_size: GlweSize,
polynomial_size: PolynomialSize,
decomposition_base_log: DecompositionBaseLog,
decomposition_level_count: DecompositionLevelCount,
) -> Self {
assert_eq!(
data.container_len(),
ggsw_ciphertext_size(glwe_size, polynomial_size, decomposition_level_count)
);
Self {
data,
polynomial_size,
glwe_size,
decomposition_base_log,
decomposition_level_count,
}
}
/// Return the [`PolynomialSize`] of the [`NttGgswCiphertext`].
///
/// See [`NttGgswCiphertext::from_container`] for usage.
pub fn polynomial_size(&self) -> PolynomialSize {
self.polynomial_size
}
/// Return the [`GlweSize`] of the [`NttGgswCiphertext`].
///
/// See [`NttGgswCiphertext::from_container`] for usage.
pub fn glwe_size(&self) -> GlweSize {
self.glwe_size
}
/// Return the [`DecompositionBaseLog`] of the [`NttGgswCiphertext`].
///
/// See [`NttGgswCiphertext::from_container`] for usage.
pub fn decomposition_base_log(&self) -> DecompositionBaseLog {
self.decomposition_base_log
}
/// Return the [`DecompositionLevelCount`] of the [`NttGgswCiphertext`].
///
/// See [`NttGgswCiphertext::from_container`] for usage.
pub fn decomposition_level_count(&self) -> DecompositionLevelCount {
self.decomposition_level_count
}
/// Consume the entity and return its underlying container.
///
/// See [`NttGgswCiphertext::from_container`] for usage.
pub fn into_container(self) -> C {
self.data
}
/// Return a view of the [`NttGgswCiphertext`]. This is useful if an algorithm takes a view
/// by value.
pub fn as_view(&self) -> NttGgswCiphertextView<'_, Scalar> {
NttGgswCiphertextView {
data: self.data.as_ref(),
polynomial_size: self.polynomial_size,
glwe_size: self.glwe_size,
decomposition_base_log: self.decomposition_base_log,
decomposition_level_count: self.decomposition_level_count,
}
}
/// Return an iterator over the contiguous [`NttGgswLevelMatrix`]. This consumes the entity,
/// consider calling [`NttGgswCiphertext::as_view`] or [`NttGgswCiphertext::as_mut_view`] first
/// to have an iterator over borrowed contents instead of consuming the original entity.
pub fn into_levels(
&self,
) -> impl DoubleEndedIterator<Item = NttGgswLevelMatrixView<'_, Scalar>> {
let decomposition_level_count = self.decomposition_level_count.0;
self.data
.as_ref()
.split_into(decomposition_level_count)
.enumerate()
.map(move |(i, slice)| {
NttGgswLevelMatrixView::from_container(
slice,
self.glwe_size,
self.polynomial_size,
DecompositionLevel(decomposition_level_count - i),
)
})
}
}
impl<Scalar: UnsignedInteger, C: ContainerMut<Element = Scalar>> NttGgswCiphertext<C> {
/// Mutable variant of [`NttGgswCiphertext::as_view`].
pub fn as_mut_view(&mut self) -> NttGgswCiphertextMutView<'_, Scalar> {
NttGgswCiphertextMutView {
data: self.data.as_mut(),
polynomial_size: self.polynomial_size,
glwe_size: self.glwe_size,
decomposition_base_log: self.decomposition_base_log,
decomposition_level_count: self.decomposition_level_count,
}
}
}
impl<Scalar: UnsignedInteger> NttGgswCiphertext<ABox<[Scalar]>> {
/// Allocate memory and create a new owned [`NttGgswCiphertext`].
///
/// # Note
///
/// # Note
///
/// This function allocates a vector of the appropriate size and wraps it in the appropriate
/// type. If you want to have useful data in the [`NttGgswCiphertext`] you will first need to
/// convert it from a standard
/// [`GgswCiphertext`](`crate::core_crypto::entities::GgswCiphertext`).
///
/// See [`NttGgswCiphertext::from_container`] for usage.
pub fn new(
glwe_size: GlweSize,
polynomial_size: PolynomialSize,
decomposition_base_log: DecompositionBaseLog,
decomposition_level_count: DecompositionLevelCount,
) -> Self {
let boxed = avec![
Scalar::ZERO;
ggsw_ciphertext_size(glwe_size, polynomial_size, decomposition_level_count)
]
.into_boxed_slice();
NttGgswCiphertext::from_container(
boxed,
glwe_size,
polynomial_size,
decomposition_base_log,
decomposition_level_count,
)
}
}
pub type NttGgswCiphertextOwned<Scalar> = NttGgswCiphertext<ABox<[Scalar]>>;
pub type NttGgswCiphertextView<'data, Scalar> = NttGgswCiphertext<&'data [Scalar]>;
pub type NttGgswCiphertextMutView<'data, Scalar> = NttGgswCiphertext<&'data mut [Scalar]>;
/// A matrix containing a single level of gadget decomposition, in the Ntt domain.
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub struct NttGgswLevelMatrix<C: Container>
where
C::Element: UnsignedInteger,
{
data: C,
glwe_size: GlweSize,
polynomial_size: PolynomialSize,
decomposition_level: DecompositionLevel,
}
impl<T: UnsignedInteger, C: Container<Element = T>> AsRef<[T]> for NttGgswLevelMatrix<C> {
fn as_ref(&self) -> &[T] {
self.data.as_ref()
}
}
impl<T: UnsignedInteger, C: ContainerMut<Element = T>> AsMut<[T]> for NttGgswLevelMatrix<C> {
fn as_mut(&mut self) -> &mut [T] {
self.data.as_mut()
}
}
impl<Scalar: UnsignedInteger, C: Container<Element = Scalar>> NttGgswLevelMatrix<C> {
pub fn from_container(
container: C,
glwe_size: GlweSize,
polynomial_size: PolynomialSize,
decomposition_level: DecompositionLevel,
) -> Self {
assert_eq!(
container.container_len(),
ggsw_level_matrix_size(glwe_size, polynomial_size)
);
Self {
data: container,
glwe_size,
polynomial_size,
decomposition_level,
}
}
/// Return an iterator over the rows of the level matrices.
pub fn into_rows(
self,
) -> impl DoubleEndedIterator<Item = NttGgswLevelRow<C>> + ExactSizeIterator<Item = NttGgswLevelRow<C>>
where
C: Split,
{
let row_count = self.row_count();
self.data
.split_into(row_count)
.map(move |slice| NttGgswLevelRow {
data: slice,
polynomial_size: self.polynomial_size,
glwe_size: self.glwe_size,
decomposition_level: self.decomposition_level,
})
}
pub fn polynomial_size(&self) -> PolynomialSize {
self.polynomial_size
}
pub fn glwe_size(&self) -> GlweSize {
self.glwe_size
}
pub fn row_count(&self) -> usize {
self.glwe_size.0
}
pub fn decomposition_level(&self) -> DecompositionLevel {
self.decomposition_level
}
pub fn into_container(self) -> C {
self.data
}
}
pub type NttGgswLevelMatrixView<'data, Scalar> = NttGgswLevelMatrix<&'data [Scalar]>;
pub type NttGgswLevelMatrixMutView<'data, Scalar> = NttGgswLevelMatrix<&'data mut [Scalar]>;
/// A row of a GGSW level matrix, in the Ntt domain.
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub struct NttGgswLevelRow<C: Container>
where
C::Element: UnsignedInteger,
{
data: C,
glwe_size: GlweSize,
polynomial_size: PolynomialSize,
decomposition_level: DecompositionLevel,
}
impl<T: UnsignedInteger, C: Container<Element = T>> AsRef<[T]> for NttGgswLevelRow<C> {
fn as_ref(&self) -> &[T] {
self.data.as_ref()
}
}
impl<T: UnsignedInteger, C: ContainerMut<Element = T>> AsMut<[T]> for NttGgswLevelRow<C> {
fn as_mut(&mut self) -> &mut [T] {
self.data.as_mut()
}
}
impl<C: Container<Element = u64>> NttGgswLevelRow<C> {
pub fn from_container(
data: C,
glwe_size: GlweSize,
polynomial_size: PolynomialSize,
decomposition_level: DecompositionLevel,
) -> Self {
assert_eq!(
data.container_len(),
glwe_ciphertext_size(glwe_size, polynomial_size)
);
Self {
data,
glwe_size,
polynomial_size,
decomposition_level,
}
}
pub fn polynomial_size(&self) -> PolynomialSize {
self.polynomial_size
}
pub fn glwe_size(&self) -> GlweSize {
self.glwe_size
}
pub fn decomposition_level(&self) -> DecompositionLevel {
self.decomposition_level
}
pub fn into_container(self) -> C {
self.data
}
}
pub type NttGgswLevelRowView<'data, Scalar> = NttGgswLevelRow<&'data [Scalar]>;
pub type NttGgswLevelRowMutView<'data, Scalar> = NttGgswLevelRow<&'data mut [Scalar]>;