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
// Copyright © 2023 Marvin Beckmann
//
// This file is part of qFALL-math.
//
// qFALL-math is free software: you can redistribute it and/or modify it under
// the terms of the Mozilla Public License Version 2.0 as published by the
// Mozilla Foundation. See <https://mozilla.org/en-US/MPL/2.0/>.
//! This module contains algorithms for sampling according to the discrete Gaussian distribution.
use crate::{
error::MathError,
integer::{MatPolyOverZ, MatZ, PolyOverZ},
rational::{PolyOverQ, Q},
traits::{
Concatenate, FromCoefficientEmbedding, IntoCoefficientEmbedding, MatrixDimensions,
MatrixSetEntry, SetCoefficient,
},
utils::{
index::evaluate_index,
sample::discrete_gauss::{DiscreteGaussianIntegerSampler, LookupTableSetting, TAILCUT},
},
};
use std::fmt::Display;
impl MatPolyOverZ {
/// Initializes a new matrix with dimensions `num_rows` x `num_columns` and with each entry
/// sampled independently according to the discrete Gaussian distribution,
/// using [`PolyOverZ::sample_discrete_gauss`].
///
/// Parameters:
/// - `num_rows`: specifies the number of rows the new matrix should have
/// - `num_cols`: specifies the number of columns the new matrix should have
/// - `max_degree`: specifies the included maximal degree the created [`PolyOverZ`] should have
/// - `center`: specifies the positions of the center with peak probability
/// - `s`: specifies the Gaussian parameter, which is proportional
/// to the standard deviation `sigma * sqrt(2 * pi) = s`
///
/// Returns a [`MatPolyOverZ`] with each entry sampled independently from the
/// specified discrete Gaussian distribution or an error if `s < 0`.
///
/// # Examples
/// ```
/// use qfall_math::integer::MatPolyOverZ;
///
/// let matrix = MatPolyOverZ::sample_discrete_gauss(3, 1, 5, 0, 1.25f32).unwrap();
/// ```
///
/// # Errors and Failures
/// - Returns a [`MathError`] of type [`InvalidIntegerInput`](MathError::InvalidIntegerInput)
/// if `s < 0`.
///
/// # Panics ...
/// - if the provided number of rows and columns are not suited to create a matrix.
/// For further information see [`MatPolyOverZ::new`].
/// - if `max_degree` is negative, or does not fit into an [`i64`].
pub fn sample_discrete_gauss(
num_rows: impl TryInto<i64> + Display,
num_cols: impl TryInto<i64> + Display,
max_degree: impl TryInto<i64> + Display,
center: impl Into<Q>,
s: impl Into<Q>,
) -> Result<MatPolyOverZ, MathError> {
let max_degree = evaluate_index(max_degree).unwrap();
let mut matrix = MatPolyOverZ::new(num_rows, num_cols);
let mut dgis = DiscreteGaussianIntegerSampler::init(
center,
s,
unsafe { TAILCUT },
LookupTableSetting::FillOnTheFly,
)?;
for row in 0..matrix.get_num_rows() {
for col in 0..matrix.get_num_columns() {
let mut entry = PolyOverZ::default();
for index in 0..=max_degree {
let sample = dgis.sample_z();
unsafe { entry.set_coeff_unchecked(index, &sample) };
}
unsafe { matrix.set_entry_unchecked(row, col, entry) };
}
}
Ok(matrix)
}
/// SampleD samples a discrete Gaussian from the lattice with a provided `basis`.
///
/// We do not check whether `basis` is actually a basis. Hence, the callee is
/// responsible for making sure that `basis` provides a suitable basis.
///
/// Parameters:
/// - `basis`: specifies a basis for the lattice from which is sampled
/// - `k`: the maximal length the polynomial can have
/// - `center`: specifies the positions of the center with peak probability
/// - `s`: specifies the Gaussian parameter, which is proportional
/// to the standard deviation `sigma * sqrt(2 * pi) = s`
///
/// Returns a vector of polynomials sampled according to the
/// discrete Gaussian distribution or an error if the basis is not a row vector,
/// `s < 0`, or the number of rows of the `basis` and `center` differ.
///
/// # Example
/// ```
/// use qfall_math::{
/// integer::MatPolyOverZ,
/// rational::PolyOverQ,
/// };
/// use std::str::FromStr;
///
/// let basis = MatPolyOverZ::from_str("[[1 1, 3 0 1 -1, 2 2 2]]").unwrap();
/// let center = vec![PolyOverQ::default()];
///
/// let sample = MatPolyOverZ::sample_d(&basis, 3, ¢er, 10.5_f64).unwrap();
/// ```
///
/// # Errors and Failures
/// - Returns a [`MathError`] of type [`VectorFunctionCalledOnNonVector`](MathError::VectorFunctionCalledOnNonVector),
/// if the basis is not a row vector.
/// - Returns a [`MathError`] of type [`InvalidIntegerInput`](MathError::InvalidIntegerInput)
/// if `s < 0`.
/// - Returns a [`MathError`] of type [`MismatchingMatrixDimension`](MathError::MismatchingMatrixDimension)
/// if the number of rows of the `basis` and `center` differ.
///
/// This function implements SampleD according to:
/// - \[1\] Gentry, Craig and Peikert, Chris and Vaikuntanathan, Vinod (2008).
/// Trapdoors for hard lattices and new cryptographic constructions.
/// In: Proceedings of the fortieth annual ACM symposium on Theory of computing.
/// <https://dl.acm.org/doi/pdf/10.1145/1374376.1374407>
///
/// # Panics ...
/// - if the polynomials have higher length than the provided upper bound `k`
pub fn sample_d(
basis: &Self,
k: impl Into<i64>,
center: &[PolyOverQ],
s: impl Into<Q>,
) -> Result<MatPolyOverZ, MathError> {
let k = k.into();
// use coefficient embedding and then call sampleD for the matrix representation
let basis_embedded = basis.into_coefficient_embedding(k);
// use coefficient embedding to get center
let mut center_embedded = center[0].into_coefficient_embedding(k);
for row in center.iter().skip(1) {
let c_row = row.into_coefficient_embedding(k);
center_embedded = center_embedded.concat_vertical(&c_row)?;
}
let sample = MatZ::sample_d(&basis_embedded, ¢er_embedded, s)?;
Ok(MatPolyOverZ::from_coefficient_embedding((&sample, k - 1)))
}
}
#[cfg(test)]
mod test_sample_discrete_gauss {
use crate::{integer::MatPolyOverZ, traits::MatrixGetEntry};
/// Checks whether `sample_discrete_gauss` is available for all types
/// implementing [`Into<Z>`], i.e. u8, u16, u32, u64, i8, ...
/// or [`Into<Q>`], i.e. u8, i16, f32, Z, Q, ...
#[test]
fn availability() {
let _ = MatPolyOverZ::sample_discrete_gauss(2, 3, 128, 1u16, 2);
let _ = MatPolyOverZ::sample_discrete_gauss(1, 3, 128, 1u8, 2.0);
let _ = MatPolyOverZ::sample_discrete_gauss(2_i64, 3, 128, 1u32, 2.0_f64);
let _ = MatPolyOverZ::sample_discrete_gauss(2_i32, 3, 128, 1u64, 1);
let _ = MatPolyOverZ::sample_discrete_gauss(2_i16, 3, 128, 1i64, 3_u64);
let _ = MatPolyOverZ::sample_discrete_gauss(2_i8, 3, 128, 1i32, 1);
let _ = MatPolyOverZ::sample_discrete_gauss(2_u64, 3, 128, 1i16, 1);
let _ = MatPolyOverZ::sample_discrete_gauss(2_u32, 3, 128, 1i8, 1);
let _ = MatPolyOverZ::sample_discrete_gauss(2_u16, 3, 128, 1i64, 2);
let _ = MatPolyOverZ::sample_discrete_gauss(2_u8, 3, 128, -2, 3);
let _ = MatPolyOverZ::sample_discrete_gauss(1, 3, 128, 4, 3);
let _ = MatPolyOverZ::sample_discrete_gauss(3, 3, 128, 1.25f64, 3);
let _ = MatPolyOverZ::sample_discrete_gauss(4, 3, 128, 15.75f32, 3);
}
/// Ensures that the resulting entries have correct degree.
#[test]
fn correct_degree_entries() {
let degrees = [1, 3, 7, 15, 32, 120];
for degree in degrees {
let res = MatPolyOverZ::sample_discrete_gauss(1, 1, degree, i64::MAX, 1).unwrap();
assert_eq!(
res.get_entry(0, 0).unwrap().get_degree(),
degree,
"Could fail with negligible probability."
);
}
}
/// Checks whether the maximum degree needs to be at least 0.
#[test]
#[should_panic]
fn invalid_max_degree() {
let _ = MatPolyOverZ::sample_discrete_gauss(2, 2, -1, 0, 1).unwrap();
}
}
#[cfg(test)]
mod test_sample_d {
use crate::{
integer::{MatPolyOverZ, MatZ, Z},
rational::{PolyOverQ, Q},
traits::IntoCoefficientEmbedding,
};
use std::str::FromStr;
/// Ensure that the sample is from the base.
#[test]
fn ensure_sampled_from_base() {
let base = MatPolyOverZ::from_str("[[1 1, 3 0 1 -1]]").unwrap();
let center = vec![PolyOverQ::default()];
for _ in 0..10 {
let sample = MatPolyOverZ::sample_d(&base, 3, ¢er, 10.5_f64).unwrap();
let sample_vec = sample.into_coefficient_embedding(3);
let orthogonal = MatZ::from_str("[[0],[1],[1]]").unwrap();
assert_eq!(Z::ZERO, sample_vec.dot_product(&orthogonal).unwrap());
}
}
/// Ensure that the sample is from the base for higher dimensional bases.
#[test]
fn ensure_sampled_from_base_higher_dimension() {
let base = MatPolyOverZ::from_str("[[1 1, 3 0 1 -1],[3 0 1 -1, 1 1],[0, 0]]").unwrap();
let center = vec![
PolyOverQ::default(),
PolyOverQ::default(),
PolyOverQ::default(),
];
let orthogonal = MatZ::from_str("[[0, 1, 1, 0, 1, 1, 0 , 0, 0]]").unwrap();
for _ in 0..10 {
let sample = MatPolyOverZ::sample_d(&base, 3, ¢er, 10.5_f64).unwrap();
let sample_embedded = sample.into_coefficient_embedding(3);
assert_eq!(MatZ::new(1, 1), &orthogonal * &sample_embedded);
}
}
/// Checks whether `sample_d` is available for all types
/// implementing [`Into<Z>`], i.e. u8, u16, u32, u64, i8, ...
/// or [`Into<Q>`], i.e. u8, i16, f32, Z, Q, ...
#[test]
fn availability() {
let basis = MatPolyOverZ::from_str("[[1 1, 2 0 1, 3 0 0 1]]").unwrap();
let center = vec![PolyOverQ::default()];
let n = Z::from(1024);
let s = Q::ONE;
let _ = MatPolyOverZ::sample_d(&basis, 3, ¢er, 1u16);
let _ = MatPolyOverZ::sample_d(&basis, 3, ¢er, 1u8);
let _ = MatPolyOverZ::sample_d(&basis, 3, ¢er, 1u32);
let _ = MatPolyOverZ::sample_d(&basis, 3, ¢er, 1u64);
let _ = MatPolyOverZ::sample_d(&basis, 3, ¢er, 1i64);
let _ = MatPolyOverZ::sample_d(&basis, 3, ¢er, 1i32);
let _ = MatPolyOverZ::sample_d(&basis, 3, ¢er, 1i16);
let _ = MatPolyOverZ::sample_d(&basis, 3, ¢er, 1i8);
let _ = MatPolyOverZ::sample_d(&basis, 3, ¢er, 1i64);
let _ = MatPolyOverZ::sample_d(&basis, 3, ¢er, &n);
let _ = MatPolyOverZ::sample_d(&basis, 3, ¢er, &s);
let _ = MatPolyOverZ::sample_d(&basis, 3, ¢er, 1.25f64);
let _ = MatPolyOverZ::sample_d(&basis, 3, ¢er, 15.75f32);
}
}