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
use crate::ciphertext::RadixCiphertext;
use crate::server_key::CheckError;
use crate::server_key::CheckError::CarryFull;
use crate::ServerKey;
use rayon::prelude::*;
use std::collections::HashMap;
use std::sync::Mutex;
impl ServerKey {
/// Computes homomorphically a multiplication between a scalar and a ciphertext.
///
/// This function computes the operation without checking if it exceeds the capacity of the
/// ciphertext.
///
/// The result is returned as a new ciphertext.
///
/// # Example
///
/// ```rust
/// use concrete_integer::gen_keys_radix;
/// use concrete_shortint::parameters::PARAM_MESSAGE_2_CARRY_2;
///
/// // We have 4 * 2 = 8 bits of message
/// let size = 4;
/// let (cks, sks) = gen_keys_radix(&PARAM_MESSAGE_2_CARRY_2, size);
///
/// let msg = 30;
/// let scalar = 3;
///
/// let ct = cks.encrypt(msg);
///
/// // Compute homomorphically a scalar multiplication:
/// let ct_res = sks.unchecked_small_scalar_mul_parallelized(&ct, scalar);
///
/// let clear = cks.decrypt(&ct_res);
/// assert_eq!(scalar * msg, clear);
/// ```
pub fn unchecked_small_scalar_mul_parallelized(
&self,
ctxt: &RadixCiphertext,
scalar: u64,
) -> RadixCiphertext {
let mut ct_result = ctxt.clone();
self.unchecked_small_scalar_mul_assign_parallelized(&mut ct_result, scalar);
ct_result
}
pub fn unchecked_small_scalar_mul_assign_parallelized(
&self,
ctxt: &mut RadixCiphertext,
scalar: u64,
) {
ctxt.blocks.par_iter_mut().for_each(|ct_i| {
self.key.unchecked_scalar_mul_assign(ct_i, scalar as u8);
});
}
/// Computes homomorphically a multiplication between a scalar and a ciphertext.
///
/// If the operation can be performed, the result is returned in a new ciphertext.
/// Otherwise [CheckError::CarryFull] is returned.
///
/// # Example
///
/// ```rust
/// use concrete_integer::gen_keys_radix;
/// use concrete_shortint::parameters::PARAM_MESSAGE_2_CARRY_2;
///
/// // We have 4 * 2 = 8 bits of message
/// let size = 4;
/// let (cks, sks) = gen_keys_radix(&PARAM_MESSAGE_2_CARRY_2, size);
///
/// let msg = 33;
/// let scalar = 3;
///
/// let ct = cks.encrypt(msg);
///
/// // Compute homomorphically a scalar multiplication:
/// let ct_res = sks.checked_small_scalar_mul_parallelized(&ct, scalar);
///
/// match ct_res {
/// Err(x) => panic!("{:?}", x),
/// Ok(y) => {
/// let clear = cks.decrypt(&y);
/// assert_eq!(msg * scalar, clear);
/// }
/// }
/// ```
pub fn checked_small_scalar_mul_parallelized(
&self,
ct: &RadixCiphertext,
scalar: u64,
) -> Result<RadixCiphertext, CheckError> {
// If the ciphertext cannot be multiplied without exceeding the capacity of a ciphertext
if self.is_small_scalar_mul_possible(ct, scalar) {
Ok(self.unchecked_small_scalar_mul_parallelized(ct, scalar))
} else {
Err(CarryFull)
}
}
/// Computes homomorphically a multiplication between a scalar and a ciphertext.
///
/// If the operation can be performed, the result is assigned to the ciphertext given
/// as parameter.
/// Otherwise [CheckError::CarryFull] is returned.
///
/// # Example
///
/// ```rust
/// use concrete_integer::gen_keys_radix;
/// use concrete_shortint::parameters::PARAM_MESSAGE_2_CARRY_2;
///
/// // We have 4 * 2 = 8 bits of message
/// let size = 4;
/// let (cks, sks) = gen_keys_radix(&PARAM_MESSAGE_2_CARRY_2, size);
///
/// let msg = 33;
/// let scalar = 3;
///
/// let mut ct = cks.encrypt(msg);
///
/// // Compute homomorphically a scalar multiplication:
/// sks.checked_small_scalar_mul_assign_parallelized(&mut ct, scalar);
///
/// let clear_res = cks.decrypt(&ct);
/// assert_eq!(clear_res, msg * scalar);
/// ```
pub fn checked_small_scalar_mul_assign_parallelized(
&self,
ct: &mut RadixCiphertext,
scalar: u64,
) -> Result<(), CheckError> {
// If the ciphertext cannot be multiplied without exceeding the capacity of a ciphertext
if self.is_small_scalar_mul_possible(ct, scalar) {
self.unchecked_small_scalar_mul_assign_parallelized(ct, scalar);
Ok(())
} else {
Err(CarryFull)
}
}
/// Computes homomorphically a multiplication between a scalar and a ciphertext.
///
/// `small` means the scalar value shall fit in a __shortint block__.
/// For example, if the parameters are PARAM_MESSAGE_2_CARRY_2,
/// the scalar should fit in 2 bits.
///
/// The result is returned as a new ciphertext.
///
/// # Example
///
/// ```rust
/// use concrete_integer::gen_keys_radix;
/// use concrete_shortint::parameters::PARAM_MESSAGE_2_CARRY_2;
///
/// // We have 4 * 2 = 8 bits of message
/// let modulus = 1 << 8;
/// let size = 4;
/// let (cks, sks) = gen_keys_radix(&PARAM_MESSAGE_2_CARRY_2, size);
///
/// let msg = 13;
/// let scalar = 5;
///
/// let mut ct = cks.encrypt(msg);
///
/// // Compute homomorphically a scalar multiplication:
/// let ct_res = sks.smart_small_scalar_mul_parallelized(&mut ct, scalar);
///
/// // Decrypt:
/// let clear = cks.decrypt(&ct_res);
/// assert_eq!(msg * scalar % modulus, clear);
/// ```
pub fn smart_small_scalar_mul_parallelized(
&self,
ctxt: &mut RadixCiphertext,
scalar: u64,
) -> RadixCiphertext {
if !self.is_small_scalar_mul_possible(ctxt, scalar) {
self.full_propagate_parallelized(ctxt);
}
self.unchecked_small_scalar_mul_parallelized(ctxt, scalar)
}
/// Computes homomorphically a multiplication between a scalar and a ciphertext.
///
/// `small` means the scalar shall value fit in a __shortint block__.
/// For example, if the parameters are PARAM_MESSAGE_2_CARRY_2,
/// the scalar should fit in 2 bits.
///
/// The result is assigned to the input ciphertext
///
/// # Example
///
/// ```rust
/// use concrete_integer::gen_keys_radix;
/// use concrete_shortint::parameters::PARAM_MESSAGE_2_CARRY_2;
///
/// // We have 4 * 2 = 8 bits of message
/// let modulus = 1 << 8;
/// let size = 4;
/// let (cks, sks) = gen_keys_radix(&PARAM_MESSAGE_2_CARRY_2, size);
///
/// let msg = 9;
/// let scalar = 3;
///
/// let mut ct = cks.encrypt(msg);
///
/// // Compute homomorphically a scalar multiplication:
/// sks.smart_small_scalar_mul_assign_parallelized(&mut ct, scalar);
///
/// // Decrypt:
/// let clear = cks.decrypt(&ct);
/// assert_eq!(msg * scalar % modulus, clear);
/// ```
pub fn smart_small_scalar_mul_assign_parallelized(
&self,
ctxt: &mut RadixCiphertext,
scalar: u64,
) {
if !self.is_small_scalar_mul_possible(ctxt, scalar) {
self.full_propagate_parallelized(ctxt);
}
self.unchecked_small_scalar_mul_assign_parallelized(ctxt, scalar);
}
/// Computes homomorphically a multiplication between a scalar and a ciphertext.
///
///
/// # Example
///
/// ```rust
/// use concrete_integer::gen_keys_radix;
/// use concrete_shortint::parameters::PARAM_MESSAGE_2_CARRY_2;
///
/// // We have 4 * 2 = 8 bits of message
/// let modulus = 1 << 8;
/// let size = 4;
/// let (cks, sks) = gen_keys_radix(&PARAM_MESSAGE_2_CARRY_2, size);
///
/// let msg = 230;
/// let scalar = 376;
///
/// let mut ct = cks.encrypt(msg);
///
/// // Compute homomorphically a scalar multiplication:
/// let ct_res = sks.smart_scalar_mul_parallelized(&mut ct, scalar);
///
/// // Decrypt:
/// let clear = cks.decrypt(&ct_res);
/// assert_eq!(msg * scalar % modulus, clear);
/// ```
pub fn smart_scalar_mul_parallelized(
&self,
ct: &mut RadixCiphertext,
scalar: u64,
) -> RadixCiphertext {
let zero = self.create_trivial_zero_radix(ct.blocks.len());
if scalar == 0 || ct.blocks.is_empty() {
return zero;
}
let b = self.key.message_modulus.0 as u64;
let n = ct.blocks.len();
//Propagate the carries before doing the multiplications
self.full_propagate_parallelized(ct);
let ct = &*ct;
// key is the small scalar we multiply by
// value is the vector of blockshifts
let mut task_map = HashMap::<u64, Vec<usize>>::new();
let mut b_i = 1_u64;
for i in 0..n {
let u_i = (scalar / b_i) % b;
task_map.entry(u_i).or_insert_with(Vec::new).push(i);
b_i *= b;
}
let terms = Mutex::new(Vec::<RadixCiphertext>::new());
task_map.par_iter().for_each(|(&u_i, blockshifts)| {
if u_i == 0 {
return;
}
let blockshifts = &**blockshifts;
let min_blockshift = *blockshifts.iter().min().unwrap();
let mut tmp = ct.clone();
if u_i != 1 {
tmp.blocks[0..n - min_blockshift]
.par_iter_mut()
.for_each(|ct_i| self.key.unchecked_scalar_mul_assign(ct_i, u_i as u8));
}
let tmp = &tmp;
blockshifts.par_iter().for_each(|&shift| {
let term = self.blockshift(tmp, shift);
terms.lock().unwrap().push(term);
});
});
let mut terms = terms.into_inner().unwrap();
self.smart_binary_op_seq_parallelized(&mut terms, ServerKey::smart_add_parallelized)
.unwrap_or(zero)
}
pub fn smart_scalar_mul_assign_parallelized(&self, ctxt: &mut RadixCiphertext, scalar: u64) {
*ctxt = self.smart_scalar_mul_parallelized(ctxt, scalar);
}
}