-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclient_encryption.cpp
109 lines (88 loc) · 3.55 KB
/
client_encryption.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
#include "exp.hpp"
void ipe_client_enc_time(const int round){
// Open the output files.
std::ofstream file("client_enc_time.txt", std::ios_base::app);
file << "IPE Timings" << std::endl;
for (int length = 10; length <= 200; length += 10){
// Create holder for timings.
std::chrono::duration<double, std::milli> time{};
// Create pp and msk.
auto pp = IpeFilter::pp_gen(1, length);
auto msk = IpeFilter::msk_gen(pp);
// Perform ROUND number of Enc.
for (int i = 0; i < round; ++i){
// Create a random vector of desired length.
auto x = Helper::rand_int_vec(length, 1, std::numeric_limits<int>::max());
// Encryption timings.
auto start = std::chrono::high_resolution_clock::now();
std::ignore = IpeFilter::enc(pp, msk, x);
auto end = std::chrono::high_resolution_clock::now();
time += end - start;
}
// Output the time.
file << "(" << length << ", " << time.count() / round << ")" << std::endl;
// Close the BP.
BP::close();
}
// Create some blank spaces.
file << std::endl << std::endl;
}
void sse_client_enc_time(const int round){
// Open the output files.
std::ofstream file("client_enc_time.txt", std::ios_base::app);
file << "SSE Timings" << std::endl;
// Setup and Encryption time.
for (int length = 10; length <= 200; length += 10){
// Create holder for timings.
std::chrono::duration<double, std::milli> time{};
// Create pp and msk.
auto msk = SseFilter::msk_gen();
// Perform ROUND number of setup.
for (int i = 0; i < round; ++i){
// Create a random vector of desired length.
auto x = Helper::rand_int_vec(length, 1, std::numeric_limits<int>::max());
// Encryption timings.
auto start = std::chrono::high_resolution_clock::now();
std::ignore = SseFilter::enc(msk, x);
auto end = std::chrono::high_resolution_clock::now();
time += end - start;
}
// Output the time.
file << "(" << length << ", " << time.count() / round << ")" << std::endl;
}
// Create some blank spaces.
file << std::endl << std::endl;
}
void our_client_enc_time(const int round){
// Open the output files.
std::ofstream file("client_enc_time.txt", std::ios_base::app);
file << "Our Timings" << std::endl;
for (int length = 10; length <= 200; length += 10){
// Create holder for timings.
std::chrono::duration<double, std::milli> time{};
// Create pp and msk.
auto pp = Filter::pp_gen(1, length);
auto msk = Filter::msk_gen(pp);
// Perform ROUND number of Enc.
for (int i = 0; i < round; ++i){
// Create a random vector of desired length.
auto x = Helper::rand_int_vec(length, 1, std::numeric_limits<int>::max());
// Encryption timings.
auto start = std::chrono::high_resolution_clock::now();
std::ignore = Filter::enc(pp, msk, x);
auto end = std::chrono::high_resolution_clock::now();
time += end - start;
}
// Output the time.
file << "(" << length << ", " << time.count() / round << ")" << std::endl;
// Close the BP.
BP::close();
}
// Create some blank spaces.
file << std::endl << std::endl;
}
void bench_enc_time(const int round){
ipe_client_enc_time(round);
sse_client_enc_time(round);
our_client_enc_time(round);
}