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
use crate::ciphertext::RadixCiphertext;
use crate::server_key::CheckError;
use crate::server_key::CheckError::CarryFull;
use crate::ServerKey;
use std::collections::BTreeMap;
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(&ct, scalar);
///
/// let clear = cks.decrypt(&ct_res);
/// assert_eq!(scalar * msg, clear);
/// ```
pub fn unchecked_small_scalar_mul(
&self,
ctxt: &RadixCiphertext,
scalar: u64,
) -> RadixCiphertext {
let mut ct_result = ctxt.clone();
self.unchecked_small_scalar_mul_assign(&mut ct_result, scalar);
ct_result
}
pub fn unchecked_small_scalar_mul_assign(&self, ctxt: &mut RadixCiphertext, scalar: u64) {
for ct_i in ctxt.blocks.iter_mut() {
self.key.unchecked_scalar_mul_assign(ct_i, scalar as u8);
}
}
///Verifies if ct1 can be multiplied by scalar.
///
/// # 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 = 25;
/// let scalar1 = 3;
///
/// let ct = cks.encrypt(msg);
///
/// // Verification if the scalar multiplication can be computed:
/// let res = sks.is_small_scalar_mul_possible(&ct, scalar1);
///
/// assert_eq!(true, res);
///
/// let scalar2 = 7;
/// // Verification if the scalar multiplication can be computed:
/// let res = sks.is_small_scalar_mul_possible(&ct, scalar2);
/// assert_eq!(false, res);
/// ```
pub fn is_small_scalar_mul_possible(&self, ctxt: &RadixCiphertext, scalar: u64) -> bool {
for ct_i in ctxt.blocks.iter() {
if !self.key.is_scalar_mul_possible(ct_i, scalar as u8) {
return false;
}
}
true
}
/// 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(&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(
&self,
ct: &RadixCiphertext,
scalar: u64,
) -> Result<RadixCiphertext, CheckError> {
let mut ct_result = ct.clone();
// If the ciphertext cannot be multiplied without exceeding the capacity of a ciphertext
if self.is_small_scalar_mul_possible(ct, scalar) {
ct_result = self.unchecked_small_scalar_mul(&ct_result, scalar);
Ok(ct_result)
} 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(&mut ct, scalar);
///
/// let clear_res = cks.decrypt(&ct);
/// assert_eq!(clear_res, msg * scalar);
/// ```
pub fn checked_small_scalar_mul_assign(
&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(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(&mut ct, scalar);
///
/// // Decrypt:
/// let clear = cks.decrypt(&ct_res);
/// assert_eq!(msg * scalar % modulus, clear);
/// ```
pub fn smart_small_scalar_mul(
&self,
ctxt: &mut RadixCiphertext,
scalar: u64,
) -> RadixCiphertext {
if !self.is_small_scalar_mul_possible(ctxt, scalar) {
self.full_propagate(ctxt);
}
self.unchecked_small_scalar_mul(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(&mut ct, scalar);
///
/// // Decrypt:
/// let clear = cks.decrypt(&ct);
/// assert_eq!(msg * scalar % modulus, clear);
/// ```
pub fn smart_small_scalar_mul_assign(&self, ctxt: &mut RadixCiphertext, scalar: u64) {
if !self.is_small_scalar_mul_possible(ctxt, scalar) {
self.full_propagate(ctxt);
}
self.unchecked_small_scalar_mul_assign(ctxt, scalar);
}
/// # 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 = 1;
/// let power = 2;
///
/// let ct = cks.encrypt(msg);
///
/// // Compute homomorphically a scalar multiplication:
/// let ct_res = sks.blockshift(&ct, power);
///
/// // Decrypt:
/// let clear = cks.decrypt(&ct_res);
/// assert_eq!(16, clear);
/// ```
pub fn blockshift(&self, ctxt: &RadixCiphertext, shift: usize) -> RadixCiphertext {
let ctxt_zero = self.key.create_trivial(0_u8);
let mut result = ctxt.clone();
for res_i in result.blocks[..shift].iter_mut() {
*res_i = ctxt_zero.clone();
}
for (res_i, c_i) in result.blocks[shift..].iter_mut().zip(ctxt.blocks.iter()) {
*res_i = c_i.clone();
}
result
}
/// 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(&mut ct, scalar);
///
/// // Decrypt:
/// let clear = cks.decrypt(&ct_res);
/// assert_eq!(msg * scalar % modulus, clear);
/// ```
pub fn smart_scalar_mul(&self, ctxt: &mut RadixCiphertext, scalar: u64) -> RadixCiphertext {
let mask = (self.key.message_modulus.0 - 1) as u64;
//Propagate the carries before doing the multiplications
self.full_propagate(ctxt);
//Store the computations
let mut map: BTreeMap<u64, RadixCiphertext> = BTreeMap::new();
let mut result = self.create_trivial_zero_radix(ctxt.blocks.len());
let mut tmp;
let mut b_i = 1_u64;
for i in 0..ctxt.blocks.len() {
//lambda = sum u_ib^i
let u_ib_i = scalar & (mask * b_i);
let u_i = u_ib_i / b_i;
if u_i == 0 {
//update the power b^{i+1}
b_i *= self.key.message_modulus.0 as u64;
continue;
} else if u_i == 1 {
// tmp = ctxt * 1 * b^i
tmp = self.blockshift(ctxt, i);
} else {
tmp = map
.entry(u_i)
.or_insert_with(|| self.smart_small_scalar_mul(ctxt, u_i))
.clone();
//tmp = ctxt* u_i * b^i
tmp = self.blockshift(&tmp, i);
}
//update the result
result = self.smart_add(&mut result, &mut tmp);
//update the power b^{i+1}
b_i *= self.key.message_modulus.0 as u64;
}
result
}
pub fn smart_scalar_mul_assign(&self, ctxt: &mut RadixCiphertext, scalar: u64) {
*ctxt = self.smart_scalar_mul(ctxt, scalar);
}
}