forked from kimlaine/bootcamp
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathexamples.cpp
210 lines (165 loc) · 6.16 KB
/
examples.cpp
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
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT license.
#include "examples.h"
#include <vector>
#include <fstream>
#include <iostream>
#include <numeric>
using namespace std;
using namespace seal;
void bootcamp_demo()
{
// CLIENT'S VIEW
// Vector of inputs
vector<double> inputs{ 0.0, 1.1, 2.2, 3.3, 4.4, 5.5, 6.6, 7.7, 8.8, 9.9 };
// Setting up encryption parameters
EncryptionParameters parms(scheme_type::CKKS);
size_t poly_modulus_degree = 8192;
parms.set_poly_modulus_degree(poly_modulus_degree);
parms.set_coeff_modulus(CoeffModulus::Create(poly_modulus_degree, { 50, 30, 50 }));
// Set up the SEALContext
auto context = SEALContext::Create(parms);
cout << "Parameters are valid: " << boolalpha
<< context->key_context_data()->qualifiers().parameters_set << endl;
cout << "Maximal allowed coeff_modulus bit-count for this poly_modulus_degree: "
<< CoeffModulus::MaxBitCount(poly_modulus_degree) << endl;
cout << "Current coeff_modulus bit-count: "
<< context->key_context_data()->total_coeff_modulus_bit_count() << endl;
// Use a scale of 2^30 to encode
double scale = pow(2.0, 30);
// Create a vector of plaintexts
CKKSEncoder encoder(context);
vector<Plaintext> pts;
for (auto val : inputs) {
Plaintext p;
// Encode val as a plaintext vector: [ val, val, val, val, ..., val ]
// (poly_modulus_degree/2 == 4096 repetitions)
encoder.encode(val, scale, p);
pts.emplace_back(move(p));
}
// Set up keys
KeyGenerator keygen(context);
auto sk = keygen.secret_key();
auto pk = keygen.public_key();
// Set up Encryptor
Encryptor encryptor(context, pk);
// Create a vector of ciphertexts
vector<Ciphertext> cts;
for (const auto &p : pts) {
Ciphertext c;
encryptor.encrypt(p, c);
cts.emplace_back(move(c));
}
// Now send this vector to the server!
// Also send the EncryptionParameters.
// SERVER'S VIEW
// Load EncryptionParameters and set up SEALContext
vector<double> weights{ 2.0, -1.0, 2.0, -1.0, 2.0, -1.0, 2.0, -1.0, 2.0, -1.0 };
vector<Plaintext> weight_pts;
for (auto wt : weights) {
Plaintext p;
// Encode wt as a plaintext vector: [ wt, wt, wt, wt, ..., wt ]
// (poly_modulus_degree/2 == 4096 repetitions)
encoder.encode(wt, scale, p);
weight_pts.emplace_back(p);
}
// Create the Evaluator
Evaluator evaluator(context);
for (auto i = 0; i < cts.size(); i++) {
evaluator.multiply_plain_inplace(cts[i], weight_pts[i]);
evaluator.rescale_to_next_inplace(cts[i]);
}
// Sum up the ciphertexts
Ciphertext ct_result;
evaluator.add_many(cts, ct_result);
// CLIENT'S VIEW ONCE AGAIN
Decryptor decryptor(context, sk);
// Decrypt the result
Plaintext pt_result;
decryptor.decrypt(ct_result, pt_result);
// Decode the result
vector<double> vec_result;
encoder.decode(pt_result, vec_result);
cout << "Result: " << vec_result[0] << endl;
cout << "True result: " << inner_product(inputs.cbegin(), inputs.cend(), weights.cbegin(), 0.0) << endl;
}
int main()
{
#ifdef SEAL_VERSION
cout << "Microsoft SEAL version: " << SEAL_VERSION << endl;
#endif
bootcamp_demo();
while (false)
{
cout << "+---------------------------------------------------------+" << endl;
cout << "| The following examples should be executed while reading |" << endl;
cout << "| comments in associated files in native/examples/. |" << endl;
cout << "+---------------------------------------------------------+" << endl;
cout << "| Examples | Source Files |" << endl;
cout << "+----------------------------+----------------------------+" << endl;
cout << "| 1. BFV Basics | 1_bfv_basics.cpp |" << endl;
cout << "| 2. Encoders | 2_encoders.cpp |" << endl;
cout << "| 3. Levels | 3_levels.cpp |" << endl;
cout << "| 4. CKKS Basics | 4_ckks_basics.cpp |" << endl;
cout << "| 5. Rotation | 5_rotation.cpp |" << endl;
cout << "| 6. Performance Test | 6_performance.cpp |" << endl;
cout << "+----------------------------+----------------------------+" << endl;
/*
Print how much memory we have allocated from the current memory pool.
By default the memory pool will be a static global pool and the
MemoryManager class can be used to change it. Most users should have
little or no reason to touch the memory allocation system.
*/
size_t megabytes = MemoryManager::GetPool().alloc_byte_count() >> 20;
cout << "[" << setw(7) << right << megabytes << " MB] "
<< "Total allocation from the memory pool" << endl;
int selection = 0;
bool invalid = true;
do
{
cout << endl << "> Run example (1 ~ 6) or exit (0): ";
if (!(cin >> selection))
{
invalid = false;
}
else if (selection < 0 || selection > 6)
{
invalid = false;
}
else
{
invalid = true;
}
if (!invalid)
{
cout << " [Beep~~] Invalid option: type 0 ~ 6" << endl;
cin.clear();
cin.ignore(numeric_limits<streamsize>::max(), '\n');
}
} while (!invalid);
switch (selection)
{
case 1:
example_bfv_basics();
break;
case 2:
example_encoders();
break;
case 3:
example_levels();
break;
case 4:
example_ckks_basics();
break;
case 5:
example_rotation();
break;
case 6:
example_performance_test();
break;
case 0:
return 0;
}
}
return 0;
}