-
Notifications
You must be signed in to change notification settings - Fork 0
/
23_test_mulplain_depth_8192_4_A.cpp
185 lines (140 loc) · 4.76 KB
/
23_test_mulplain_depth_8192_4_A.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
/*
* test_mulplain_depth_8192_4_A.cpp
*
* Created on: 28 Dec 2023
* Author: massimiliano
*/
#include <iostream>
#include "seal/seal.h"
#include "utils.h"
using namespace std;
using namespace seal;
/*
* calculate 2*(2*A) to test multiply plain depth
*/
void test_mulplain_depth_8192_4_A(double range_limit = 100.0){
cout << "test_mulplain_depth_8192_4_A()" << endl;
cout << "input data range [" << -range_limit << ", " << range_limit << "]" << endl;
EncryptionParameters parms(scheme_type::ckks);
/*
* poly_modulus degree 8192
* primes coeff_modulus {60,40,40,60} max_coeff_modulus 218
* scale 2^40 precision before point 60-40 = 20 bit, precision after point 40-20 = 20 Bit
*/
size_t poly_modulus_degree = 8192;
size_t scale_exp = 40;
parms.set_poly_modulus_degree(poly_modulus_degree);
parms.set_coeff_modulus(CoeffModulus::Create(poly_modulus_degree, {60,40,40,60}));
double scale = pow(2.0, scale_exp);
/*
* SEAL context
*/
SEALContext context(parms);
print_parameters(context);
cout << "context.using_keyswitching()? " << context.using_keyswitching() << endl;
cout << endl;
print_modulus_switching_chain(context);
/*
* key generation
*/
KeyGenerator keygen(context);
SecretKey secret_key = keygen.secret_key();
RelinKeys relin_keys;
keygen.create_relin_keys(relin_keys);
GaloisKeys gal_keys;
keygen.create_galois_keys(gal_keys);
cout << "Print the parameter IDs of generated keys." << endl;
cout << " + secret_key: " << secret_key.parms_id() << endl;
cout << " + relin_keys: " << relin_keys.parms_id() << endl << endl;
/*
* encryptor, decryptor, evaluator and encoder
*/
Encryptor encryptor(context, secret_key);
Evaluator evaluator(context);
Decryptor decryptor(context, secret_key);
CKKSEncoder encoder(context);
size_t slot_count = encoder.slot_count();
cout << "Encoder number of slots: " << slot_count << endl;
cout << "Scale 2^" << scale_exp << endl << endl;
/*
* random input data and expected result
*/
const vector<double> input_A = generate_random_data(10, -range_limit, range_limit);
cout << "Input A vector size " << input_A.size() << endl;
print_vector(input_A);
vector<double> expected_2A;
vector<double> expected_4A;
for(int i=0;i<input_A.size();i++){
expected_2A.push_back(input_A[i]*2.0);
expected_4A.push_back(expected_2A[i]*2.0);
}
/*
* encode input vector
*/
Plaintext plain_A;
encoder.encode(input_A, scale, plain_A);
cout << "Input A plaintext" << endl;
print_plaintext_info(plain_A,context);
cout << "--------------------------" << endl << endl;
/*
* encrypt plaintext
*/
Ciphertext encrypted_A;
encryptor.encrypt_symmetric(plain_A, encrypted_A);
cout << "Input A ciphertext" << endl;
print_ciphertext_info(encrypted_A,context);
/*
* encode coeff
*/
Plaintext plain_coeff;
encoder.encode(2.0, scale, plain_coeff);
cout << "Coeff plaintext" << endl;
print_plaintext_info(plain_coeff,context);
/*
* perform multiplication 2*A
*/
Ciphertext encrypted_2A;
evaluator.multiply_plain(encrypted_A, plain_coeff, encrypted_2A);
cout << "Result 2A" << endl;
print_ciphertext_info(encrypted_2A,context);
check_chiphertext(&decryptor, &encoder, encrypted_2A, expected_2A);
cout << "--------------------------" << endl << endl;
/*
* no need to relinearize
*/
/*
* rescale 2*A to next prime in the chain
*/
evaluator.rescale_to_next_inplace(encrypted_2A);
cout << "Result 2A rescale" << endl;
print_ciphertext_info(encrypted_2A,context);
check_chiphertext(&decryptor, &encoder, encrypted_2A, expected_2A);
/*
* switch coeff to the same prime as 2A
*/
evaluator.mod_switch_to_inplace(plain_coeff, encrypted_2A.parms_id());
cout << "Coeff mod switch" << endl;
print_plaintext_info(plain_coeff,context);
cout << "--------------------------" << endl << endl;
/*
* check scale
*/
if(!check_operand_scale(encrypted_2A, plain_coeff)){
/*
* fix the scale of 2A by forcing the expected value
*/
encrypted_2A.scale() = pow(2.0,scale_exp);
cout << "Result 2A fix scale" << endl;
print_ciphertext_info(encrypted_2A,context);
check_chiphertext(&decryptor, &encoder, encrypted_2A, expected_2A);
}
/*
* perform multiplication 2*(2*A)
*/
Ciphertext encrypted_4A;
evaluator.multiply_plain(encrypted_2A, plain_coeff, encrypted_4A);
cout << "Result 4A" << endl;
print_ciphertext_info(encrypted_4A,context);
check_chiphertext(&decryptor, &encoder, encrypted_4A, expected_4A);
cout << "--------------------------" << endl << endl;
}