forked from microsoft/SEAL
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rlwe.h
114 lines (96 loc) · 4.83 KB
/
rlwe.h
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
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT license.
#pragma once
#include "seal/ciphertext.h"
#include "seal/context.h"
#include "seal/encryptionparams.h"
#include "seal/publickey.h"
#include "seal/randomgen.h"
#include "seal/secretkey.h"
#include <cstdint>
namespace seal
{
namespace util
{
/**
Generate a uniform ternary polynomial and store in RNS representation.
@param[in] prng A uniform random generator
@param[in] parms EncryptionParameters used to parameterize an RNS polynomial
@param[out] destination Allocated space to store a random polynomial
*/
void sample_poly_ternary(
std::shared_ptr<UniformRandomGenerator> prng, const EncryptionParameters &parms,
std::uint64_t *destination);
/**
Generate a polynomial from a normal distribution and store in RNS representation.
@param[in] prng A uniform random generator
@param[in] parms EncryptionParameters used to parameterize an RNS polynomial
@param[out] destination Allocated space to store a random polynomial
*/
void sample_poly_normal(
std::shared_ptr<UniformRandomGenerator> prng, const EncryptionParameters &parms,
std::uint64_t *destination);
/**
Generate a polynomial from a centered binomial distribution and store in RNS representation.
@param[in] prng A uniform random generator.
@param[in] parms EncryptionParameters used to parameterize an RNS polynomial
@param[out] destination Allocated space to store a random polynomial
*/
void sample_poly_cbd(
std::shared_ptr<UniformRandomGenerator> prng, const EncryptionParameters &parms,
std::uint64_t *destination);
/**
Generate a uniformly random polynomial and store in RNS representation.
@param[in] prng A uniform random generator
@param[in] parms EncryptionParameters used to parameterize an RNS polynomial
@param[out] destination Allocated space to store a random polynomial
*/
void sample_poly_uniform(
std::shared_ptr<UniformRandomGenerator> prng, const EncryptionParameters &parms,
std::uint64_t *destination);
/**
Generate a uniformly random polynomial and store in RNS representation.
This implementation corresponds to Microsoft SEAL 3.4 and earlier.
@param[in] prng A uniform random generator
@param[in] parms EncryptionParameters used to parameterize an RNS polynomial
@param[out] destination Allocated space to store a random polynomial
*/
void sample_poly_uniform_seal_3_4(
std::shared_ptr<UniformRandomGenerator> prng, const EncryptionParameters &parms,
std::uint64_t *destination);
/**
Generate a uniformly random polynomial and store in RNS representation.
This implementation corresponds to Microsoft SEAL 3.5 and earlier.
@param[in] prng A uniform random generator
@param[in] parms EncryptionParameters used to parameterize an RNS polynomial
@param[out] destination Allocated space to store a random polynomial
*/
void sample_poly_uniform_seal_3_5(
std::shared_ptr<UniformRandomGenerator> prng, const EncryptionParameters &parms,
std::uint64_t *destination);
/**
Create an encryption of zero with a public key and store in a ciphertext.
@param[in] public_key The public key used for encryption
@param[in] context The SEALContext containing a chain of ContextData
@param[in] parms_id Indicates the level of encryption
@param[in] is_ntt_form If true, store ciphertext in NTT form
@param[out] destination The output ciphertext - an encryption of zero
*/
void encrypt_zero_asymmetric(
const PublicKey &public_key, const SEALContext &context, parms_id_type parms_id, bool is_ntt_form,
Ciphertext &destination);
/**
Create an encryption of zero with a secret key and store in a ciphertext.
@param[out] destination The output ciphertext - an encryption of zero
@param[in] secret_key The secret key used for encryption
@param[in] context The SEALContext containing a chain of ContextData
@param[in] parms_id Indicates the level of encryption
@param[in] is_ntt_form If true, store ciphertext in NTT form
@param[in] save_seed If true, the second component of ciphertext is
replaced with the random seed used to sample this component
*/
void encrypt_zero_symmetric(
const SecretKey &secret_key, const SEALContext &context, parms_id_type parms_id, bool is_ntt_form,
bool save_seed, Ciphertext &destination);
} // namespace util
} // namespace seal