-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclient_single_filter.cpp
144 lines (111 loc) · 4.91 KB
/
client_single_filter.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
#include "exp.hpp"
void ipe_client_single_filter_time(const int round){
// Open the output files.
std::ofstream time_file("client_single_filter_time.txt", std::ios_base::app);
time_file << "IPE Timings" << std::endl;
std::ofstream storage_file("client_single_filter_storage.txt", std::ios_base::app);
storage_file << "IPE Storage" << std::endl;
// Create pp and msk.
auto pp = IpeFilter::pp_gen(1, 20);
auto msk = IpeFilter::msk_gen(pp);
for (int num_row = 1; num_row <= 20; ++num_row){
// Create holder for timings.
std::chrono::duration<double, std::milli> time{};
G2Vec sk;
// Perform round number of Enc.
for (int i = 0; i < round; ++i){
// Create a random vector of desired length.
auto y = Helper::rand_int_mat(20, 1, 1, std::numeric_limits<int>::max());
// Keygen timings.
auto start = std::chrono::high_resolution_clock::now();
sk = IpeFilter::keygen(pp, msk, y);
auto end = std::chrono::high_resolution_clock::now();
time += end - start;
}
// Compute the sk size.
unsigned long sk_size = sk.size() * sizeof(uint8_t) * pp.pairing_group->Gp->g2_size;
// Output the time.
time_file << "(" << num_row << ", " << time.count() / round << ")" << std::endl;
// Output the storage.
storage_file << "(" << num_row << ", " << sk_size << ")" << std::endl;
}
// Close the BP.
BP::close();
// Create some blank spaces.
time_file << std::endl << std::endl;
storage_file << std::endl << std::endl;
}
void sse_client_single_filter_time(const int round){
// Open the output files.
std::ofstream time_file("client_single_filter_time.txt", std::ios_base::app);
time_file << "SSE Timings" << std::endl;
std::ofstream storage_file("client_single_filter_storage.txt", std::ios_base::app);
storage_file << "SSE Storage" << std::endl;
// Create pp and msk.
auto msk = SseFilter::msk_gen();
CharMat sk;
for (int num_row = 1; num_row <= 20; ++num_row){
// Create holder for timings.
std::chrono::duration<double, std::milli> time{};
// Perform ROUND number of setup.
for (int i = 0; i < round; ++i){
// Create a random vector of desired length.
auto y = Helper::rand_int_vec(20, 1, std::numeric_limits<int>::max());
// Keygen timings.
auto start = std::chrono::high_resolution_clock::now();
sk = SseFilter::keygen(msk, y, static_cast<int>(std::pow(2, num_row)));
auto end = std::chrono::high_resolution_clock::now();
time += end - start;
}
// Also create holder for size.
unsigned long sk_size = sk.size() * sk[0].size() * sizeof(unsigned char);
// Output the time.
time_file << "(" << num_row << ", " << time.count() / round << ")" << std::endl;
// Output the storage.
storage_file << "(" << num_row << ", " << sk_size << ")" << std::endl;
}
// Create some blank spaces.
time_file << std::endl << std::endl;
storage_file << std::endl << std::endl;
}
void our_client_single_filter_time(const int round){
// Open the output files.
std::ofstream time_file("client_single_filter_time.txt", std::ios_base::app);
time_file << "Our Timings" << std::endl;
std::ofstream storage_file("client_single_filter_storage.txt", std::ios_base::app);
storage_file << "Our Storage" << std::endl;
// Create pp and msk.
auto pp = Filter::pp_gen(1, 20);
auto msk = Filter::msk_gen(pp);
for (int num_row = 1; num_row <= 20; ++num_row){
// Create holder for timings.
std::chrono::duration<double, std::milli> time{};
G2Vec sk;
// Perform round number of Enc.
for (int i = 0; i < round; ++i){
// Create a random vector of desired length.
auto y = Helper::rand_int_vec(20, 1, std::numeric_limits<int>::max());
// Keygen timings.
auto start = std::chrono::high_resolution_clock::now();
sk = Filter::keygen(pp, msk, y);
auto end = std::chrono::high_resolution_clock::now();
time += end - start;
}
// Compute the secret key size.
unsigned long sk_size = sk.size() * sizeof(uint8_t) * pp.pairing_group->Gp->g2_size;
// Output the time.
time_file << "(" << num_row << ", " << time.count() / round << ")" << std::endl;
// Output the storage.
storage_file << "(" << num_row << ", " << sk_size << ")" << std::endl;
}
// Close the BP.
BP::close();
// Create some blank spaces.
time_file << std::endl << std::endl;
storage_file << std::endl << std::endl;
}
void bench_client_single_filter_time(const int round){
ipe_client_single_filter_time(round);
sse_client_single_filter_time(round);
our_client_single_filter_time(round);
}