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
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
use super::{RadixCiphertext, ServerKey, SignedRadixCiphertext};
use crate::conformance::ParameterSetConformant;
use crate::core_crypto::prelude::{Container, IntoContainerOwned};
use crate::integer::ciphertext::IntegerRadixCiphertext;
use crate::integer::ClientKey;
use crate::named::Named;
use crate::shortint::oprf::{
CompressedOprfServerKey as ShortintCompressedOprfServerKey,
ExpandedOprfServerKey as ShortintExpandedOprfServerKey,
GenericOprfServerKey as ShortintGenericOprfServerKey, OprfPrivateKey as ShortintOprfPrivateKey,
OprfServerKey as ShortintOprfServerKey,
};
use crate::shortint::{AtomicPatternParameters, OprfSeed};
use aligned_vec::ABox;
use std::num::NonZeroU64;
use tfhe_fft::c64;
use tfhe_versionable::Versionize;
pub use tfhe_csprng::seeders::{Seed, Seeder};
use super::backward_compatibility::oprf::*;
#[derive(Clone, Debug, serde::Serialize, serde::Deserialize, Versionize)]
#[versionize(OprfPrivateKeyVersions)]
pub struct OprfPrivateKey(pub(crate) ShortintOprfPrivateKey);
impl OprfPrivateKey {
pub fn new(ck: &ClientKey) -> Self {
Self(ShortintOprfPrivateKey::new(&ck.key))
}
pub fn from_raw_parts(sk: ShortintOprfPrivateKey) -> Self {
Self(sk)
}
pub fn into_raw_parts(self) -> ShortintOprfPrivateKey {
self.0
}
}
#[derive(Clone, serde::Serialize, serde::Deserialize, Versionize)]
#[versionize(CompressedOprfServerKeyVersions)]
pub struct CompressedOprfServerKey(pub(crate) ShortintCompressedOprfServerKey);
impl CompressedOprfServerKey {
pub fn new(sk: &OprfPrivateKey, target_ck: &ClientKey) -> crate::Result<Self> {
ShortintCompressedOprfServerKey::new(&sk.0, &target_ck.key).map(Self)
}
pub fn from_raw_parts(inner: ShortintCompressedOprfServerKey) -> Self {
Self(inner)
}
pub fn into_raw_parts(self) -> ShortintCompressedOprfServerKey {
self.0
}
pub fn expand(&self) -> ExpandedOprfServerKey {
ExpandedOprfServerKey(self.0.expand())
}
pub(crate) fn is_conformant(&self, sk_param: &AtomicPatternParameters) -> bool {
self.0.is_conformant(sk_param)
}
}
#[derive(PartialEq, Eq)]
pub struct ExpandedOprfServerKey(pub(crate) ShortintExpandedOprfServerKey);
impl ExpandedOprfServerKey {
pub fn from_raw_parts(inner: ShortintExpandedOprfServerKey) -> Self {
Self(inner)
}
pub fn into_raw_parts(self) -> ShortintExpandedOprfServerKey {
self.0
}
pub fn to_fourier(&self) -> OprfServerKey {
OprfServerKey::from_raw_parts(self.0.to_fourier())
}
}
#[derive(Clone, serde::Serialize, serde::Deserialize, Versionize)]
#[serde(bound(deserialize = "C: IntoContainerOwned"))]
#[versionize(GenericOprfServerKeyVersions)]
pub struct GenericOprfServerKey<C: Container<Element = c64>> {
pub(crate) key: ShortintGenericOprfServerKey<C>,
}
pub type OprfServerKey = GenericOprfServerKey<ABox<[c64]>>;
pub type OprfServerKeyView<'a> = GenericOprfServerKey<&'a [c64]>;
impl<C> GenericOprfServerKey<C>
where
C: Container<Element = c64> + Sync,
{
pub fn from_raw_parts(inner: ShortintGenericOprfServerKey<C>) -> Self {
Self { key: inner }
}
pub fn into_raw_parts(self) -> ShortintGenericOprfServerKey<C> {
self.key
}
/// Generates an encrypted `num_block` blocks unsigned integer
/// taken uniformly in its full range using the given seed.
/// The encrypted value is oblivious to the server.
/// It can be useful to make server random generation deterministic.
///
/// ```rust
/// use tfhe::integer::gen_keys_radix;
/// use tfhe::integer::oprf::{OprfPrivateKey, OprfServerKey};
/// use tfhe::shortint::parameters::PARAM_MESSAGE_2_CARRY_2_KS_PBS_GAUSSIAN_2M128;
/// use tfhe::Seed;
///
/// let size = 4;
///
/// // Generate the client key and the server key:
/// let (cks, sks) = gen_keys_radix(PARAM_MESSAGE_2_CARRY_2_KS_PBS_GAUSSIAN_2M128, size);
///
/// let oprf_pk = OprfPrivateKey::new(cks.as_ref());
/// let oprf_sk = OprfServerKey::new(&oprf_pk, cks.as_ref()).unwrap();
///
/// // `seed` can be either a `Seed` or any byte-like input (`&[u8]`, `&[u8; N]`, ...).
/// let ct_res =
/// oprf_sk.par_generate_oblivious_pseudo_random_unsigned_integer(Seed(0), size as u64, &sks);
///
/// // Decrypt:
/// let dec_result: u64 = cks.decrypt(&ct_res);
///
/// assert!(dec_result < 1 << (2 * size));
/// ```
pub fn par_generate_oblivious_pseudo_random_unsigned_integer(
&self,
seed: impl OprfSeed,
num_blocks: u64,
target_sks: &ServerKey,
) -> RadixCiphertext {
self.par_generate_oblivious_pseudo_random_integer_full_impl(seed, num_blocks, target_sks)
}
/// Generates an encrypted `num_block` blocks unsigned integer
/// taken uniformly in `[0, 2^random_bits_count[` using the given seed.
/// The encrypted value is oblivious to the server.
/// It can be useful to make server random generation deterministic.
///
/// ```rust
/// use tfhe::integer::gen_keys_radix;
/// use tfhe::integer::oprf::{OprfPrivateKey, OprfServerKey};
/// use tfhe::shortint::parameters::PARAM_MESSAGE_2_CARRY_2_KS_PBS_GAUSSIAN_2M128;
/// use tfhe::Seed;
///
/// let size = 4;
///
/// // Generate the client key and the server key:
/// let (cks, sks) = gen_keys_radix(PARAM_MESSAGE_2_CARRY_2_KS_PBS_GAUSSIAN_2M128, size);
///
/// let oprf_pk = OprfPrivateKey::new(cks.as_ref());
/// let oprf_sk = OprfServerKey::new(&oprf_pk, cks.as_ref()).unwrap();
///
/// let random_bits_count = 3;
///
/// let ct_res = oprf_sk.par_generate_oblivious_pseudo_random_unsigned_integer_bounded(
/// Seed(0),
/// random_bits_count,
/// size as u64,
/// &sks,
/// );
///
/// // Decrypt:
/// let dec_result: u64 = cks.decrypt(&ct_res);
/// assert!(dec_result < (1 << random_bits_count));
/// ```
pub fn par_generate_oblivious_pseudo_random_unsigned_integer_bounded(
&self,
seed: impl OprfSeed,
random_bits_count: u64,
num_blocks: u64,
target_sks: &ServerKey,
) -> RadixCiphertext {
self.par_generate_oblivious_pseudo_random_integer_bounded_impl(
seed,
random_bits_count,
num_blocks,
target_sks,
)
}
/// Generates an encrypted `num_blocks_output` blocks unsigned integer
/// taken almost uniformly in [0, excluded_upper_bound[ using the given seed.
/// The encrypted value is oblivious to the server.
/// It can be useful to make server random generation deterministic.
/// The higher num_input_random_bits, the closer to a uniform the distribution will be (at the
/// cost of computation time).
/// It is recommended to use a multiple of `log2_message_modulus`
/// as `num_input_random_bits`
///
/// ```rust
/// use std::num::NonZeroU64;
/// use tfhe::integer::gen_keys_radix;
/// use tfhe::integer::oprf::{OprfPrivateKey, OprfServerKey};
/// use tfhe::shortint::parameters::PARAM_MESSAGE_2_CARRY_2_KS_PBS_GAUSSIAN_2M128;
/// use tfhe::Seed;
///
/// let size = 4;
///
/// // Generate the client key and the server key:
/// let (cks, sks) = gen_keys_radix(PARAM_MESSAGE_2_CARRY_2_KS_PBS_GAUSSIAN_2M128, size);
///
/// let oprf_pk = OprfPrivateKey::new(cks.as_ref());
/// let oprf_sk = OprfServerKey::new(&oprf_pk, cks.as_ref()).unwrap();
///
/// let num_input_random_bits = 5;
/// let excluded_upper_bound = NonZeroU64::new(3).unwrap();
/// let num_blocks_output = 8;
///
/// let ct_res = oprf_sk.par_generate_oblivious_pseudo_random_unsigned_custom_range(
/// Seed(0),
/// num_input_random_bits,
/// excluded_upper_bound,
/// num_blocks_output,
/// &sks,
/// );
///
/// // Decrypt:
/// let dec_result: u64 = cks.decrypt(&ct_res);
///
/// assert!(dec_result < excluded_upper_bound.get());
/// ```
pub fn par_generate_oblivious_pseudo_random_unsigned_custom_range(
&self,
seed: impl OprfSeed,
num_input_random_bits: u64,
excluded_upper_bound: NonZeroU64,
num_blocks_output: u64,
target_sks: &ServerKey,
) -> RadixCiphertext {
let excluded_upper_bound = excluded_upper_bound.get();
assert!(target_sks.message_modulus().0.is_power_of_two());
let message_bits_count = target_sks.message_modulus().0.ilog2() as u64;
assert!(
!excluded_upper_bound.is_power_of_two(),
"Use the cheaper par_generate_oblivious_pseudo_random_unsigned_integer_bounded function instead"
);
let num_bits_output = num_blocks_output * message_bits_count;
assert!(
(excluded_upper_bound as f64) < 2_f64.powi(num_bits_output as i32),
"num_blocks_output(={num_blocks_output}) is too small to hold an integer up to excluded_upper_bound(=excluded_upper_bound)"
);
let post_mul_num_bits =
num_input_random_bits + (excluded_upper_bound as f64).log2().ceil() as u64;
let num_blocks = post_mul_num_bits.div_ceil(message_bits_count);
let random_input: RadixCiphertext = self
.par_generate_oblivious_pseudo_random_integer_bounded_impl(
seed,
num_input_random_bits,
num_blocks,
target_sks,
);
let random_multiplied =
target_sks.scalar_mul_parallelized(&random_input, excluded_upper_bound);
let mut result =
target_sks.scalar_right_shift_parallelized(&random_multiplied, num_input_random_bits);
// Adjust the number of leading (MSB) trivial zeros blocks
result
.blocks
.resize(num_blocks_output as usize, target_sks.key.create_trivial(0));
result
}
/// Generates an encrypted `num_block` blocks signed integer
/// taken uniformly in its full range using the given seed.
/// The encrypted value is oblivious to the server.
/// It can be useful to make server random generation deterministic.
///
/// ```rust
/// use tfhe::integer::gen_keys_radix;
/// use tfhe::integer::oprf::{OprfPrivateKey, OprfServerKey};
/// use tfhe::shortint::parameters::PARAM_MESSAGE_2_CARRY_2_KS_PBS_GAUSSIAN_2M128;
///
/// let size = 4;
///
/// // Generate the client key and the server key:
/// let (cks, sks) = gen_keys_radix(PARAM_MESSAGE_2_CARRY_2_KS_PBS_GAUSSIAN_2M128, size);
///
/// let oprf_pk = OprfPrivateKey::new(cks.as_ref());
/// let oprf_sk = OprfServerKey::new(&oprf_pk, cks.as_ref()).unwrap();
///
/// let ct_res = oprf_sk.par_generate_oblivious_pseudo_random_signed_integer(
/// tfhe::Seed(0),
/// size as u64,
/// &sks,
/// );
///
/// // Decrypt:
/// let dec_result: i64 = cks.decrypt_signed(&ct_res);
/// assert!(dec_result < 1 << (2 * size - 1));
/// assert!(dec_result >= -(1 << (2 * size - 1)));
/// ```
pub fn par_generate_oblivious_pseudo_random_signed_integer(
&self,
seed: impl OprfSeed,
num_blocks: u64,
target_sks: &ServerKey,
) -> SignedRadixCiphertext {
self.par_generate_oblivious_pseudo_random_integer_full_impl(seed, num_blocks, target_sks)
}
/// Generates an encrypted `num_block` blocks signed integer
/// taken uniformly in `[0, 2^random_bits_count[` using the given seed.
/// The encrypted value is oblivious to the server.
/// It can be useful to make server random generation deterministic.
///
/// ```rust
/// use tfhe::integer::gen_keys_radix;
/// use tfhe::integer::oprf::{OprfPrivateKey, OprfServerKey};
/// use tfhe::shortint::parameters::PARAM_MESSAGE_2_CARRY_2_KS_PBS_GAUSSIAN_2M128;
/// use tfhe::Seed;
///
/// let size = 4;
///
/// let random_bits_count = 3;
///
/// // Generate the client key and the server key:
/// let (cks, sks) = gen_keys_radix(PARAM_MESSAGE_2_CARRY_2_KS_PBS_GAUSSIAN_2M128, size);
///
/// let oprf_pk = OprfPrivateKey::new(cks.as_ref());
/// let oprf_sk = OprfServerKey::new(&oprf_pk, cks.as_ref()).unwrap();
///
/// let ct_res = oprf_sk.par_generate_oblivious_pseudo_random_signed_integer_bounded(
/// Seed(0),
/// random_bits_count,
/// size as u64,
/// &sks,
/// );
///
/// // Decrypt:
/// let dec_result: i64 = cks.decrypt_signed(&ct_res);
/// assert!(dec_result >= 0);
/// assert!(dec_result < (1 << random_bits_count));
/// ```
pub fn par_generate_oblivious_pseudo_random_signed_integer_bounded(
&self,
seed: impl OprfSeed,
random_bits_count: u64,
num_blocks: u64,
target_sks: &ServerKey,
) -> SignedRadixCiphertext {
self.par_generate_oblivious_pseudo_random_integer_bounded_impl(
seed,
random_bits_count,
num_blocks,
target_sks,
)
}
fn par_generate_oblivious_pseudo_random_integer_full_impl<T: IntegerRadixCiphertext>(
&self,
seed: impl OprfSeed,
num_blocks: u64,
target_sks: &ServerKey,
) -> T {
assert!(target_sks.message_modulus().0.is_power_of_two());
let message_bits_count = target_sks.message_modulus().0.ilog2() as u64;
let blocks = self.key.generate_oblivious_pseudo_random_bits(
seed,
num_blocks * message_bits_count,
&target_sks.key,
);
T::from(blocks)
}
fn par_generate_oblivious_pseudo_random_integer_bounded_impl<T: IntegerRadixCiphertext>(
&self,
seed: impl OprfSeed,
random_bits_count: u64,
num_blocks: u64,
target_sks: &ServerKey,
) -> T {
assert!(target_sks.message_modulus().0.is_power_of_two());
let message_bits_count = target_sks.message_modulus().0.ilog2() as u64;
let range_log_size = message_bits_count * num_blocks;
if T::IS_SIGNED {
#[allow(clippy::int_plus_one)]
{
assert!(
random_bits_count + 1 <= range_log_size,
"The range asked for a random value (=[0, 2^{}[) does not fit in the available range [-2^{}, 2^{}[",
random_bits_count, range_log_size - 1, range_log_size - 1,
);
}
} else {
assert!(
random_bits_count <= range_log_size,
"The range asked for a random value (=[0, 2^{random_bits_count}[) does not fit in the available range [0, 2^{range_log_size}[",
);
}
let mut blocks = self.key.generate_oblivious_pseudo_random_bits(
seed,
random_bits_count,
&target_sks.key,
);
if blocks.len() < num_blocks as usize {
blocks.resize(num_blocks as usize, target_sks.key.create_trivial(0));
}
T::from(blocks)
}
}
// Owned-only methods.
impl OprfServerKey {
pub fn new(sk: &OprfPrivateKey, target_ck: &ClientKey) -> crate::Result<Self> {
ShortintOprfServerKey::new(&sk.0, &target_ck.key).map(|key| Self { key })
}
pub fn as_view(&self) -> OprfServerKeyView<'_> {
OprfServerKeyView {
key: self.key.as_view(),
}
}
}
impl ServerKey {
pub fn as_oprf_key_view(&self) -> OprfServerKeyView<'_> {
OprfServerKeyView {
key: self.key.as_oprf_key_view(),
}
}
}
impl ParameterSetConformant for OprfServerKey {
type ParameterSet = AtomicPatternParameters;
fn is_conformant(&self, parameter_set: &Self::ParameterSet) -> bool {
self.key.is_conformant(parameter_set)
}
}
impl Named for OprfPrivateKey {
const NAME: &'static str = "integer::OprfPrivateKey";
}
impl Named for OprfServerKey {
const NAME: &'static str = "integer::OprfServerKey";
}
impl Named for CompressedOprfServerKey {
const NAME: &'static str = "integer::CompressedOprfServerKey";
}