LWE scheme: tests for composition of gates (e.g. NAND(NAND(NAND(a, b), c), d))

This commit is contained in:
hilder.vitor
2022-03-10 15:10:38 +01:00
parent 3d7110d5d1
commit 0c7e15fc01

View File

@ -429,22 +429,87 @@ void test_lwehe_or()
cout << "OR IS OK" << endl; cout << "OR IS OK" << endl;
} }
void test_lwehe_gate_composition_helper(SchemeLWE& s, GateType g)
{
float avg_time = 0.0;
int N_TESTS = 100;
int in1, in2, exp_out;
in1 = binary_sampler(rand_engine);
exp_out = in1;
Ctxt_LWE ct_res, ct;
s.encrypt(ct_res, in1);
for (int i = 0; i < N_TESTS; i++)
{
in2 = binary_sampler(rand_engine);
s.encrypt(ct, in2);
if (g == NAND)
{
auto start = clock();
s.nand_gate(ct_res, ct_res, ct);// ct_res should encrypt NAND(exp_out, in2)
avg_time += float(clock()-start)/CLOCKS_PER_SEC;
exp_out = !(exp_out & in2); // exp_out = NAND(exp_out, in2)
//cout << "NAND output: " << output << endl;
}
else if (g == AND) {
auto start = clock();
s.and_gate(ct_res, ct_res, ct);
avg_time += float(clock()-start)/CLOCKS_PER_SEC;
exp_out = (exp_out & in2); // exp_out = AND(exp_out, in2)
//cout << "AND output: " << output << endl;
}
else if (g == OR) {
auto start = clock();
s.or_gate(ct_res, ct_res, ct);
avg_time += float(clock()-start)/CLOCKS_PER_SEC;
exp_out = (exp_out | in2); // exp_out = OR(exp_out, in2)
//cout << "OR output: " << output << endl;
}
int output = s.decrypt(ct_res);
assert(output == exp_out);
}
cout << "Avg. time" << avg_time/N_TESTS << endl;
}
void test_lwehe_composition_of_gates()
{
SchemeLWE s;
test_lwehe_gate_composition_helper(s, NAND);
cout << "COMPOSING NAND IS OK" << endl;
test_lwehe_gate_composition_helper(s, AND);
cout << "COMPOSING AND IS OK" << endl;
test_lwehe_gate_composition_helper(s, OR);
cout << "COMPOSING OR IS OK" << endl;
}
int main() int main()
{ {
test_params(); test_params();
test_sampler(); test_sampler();
cout << endl;
cout << "-------------------------" << endl;
cout << "NTRU tests" << endl; cout << "NTRU tests" << endl;
test_ntruhe_nand(); test_ntruhe_nand();
test_ntruhe_and(); test_ntruhe_and();
test_ntruhe_or(); test_ntruhe_or();
cout << "NTRU tests PASSED" << endl; cout << "NTRU tests PASSED" << endl;
cout << endl;
cout << "-------------------------" << endl;
cout << "LWE tests" << endl; cout << "LWE tests" << endl;
test_lwehe_nand(); test_lwehe_nand();
test_lwehe_and(); test_lwehe_and();
test_lwehe_or(); test_lwehe_or();
test_lwehe_composition_of_gates();
cout << "LWE tests PASSED" << endl; cout << "LWE tests PASSED" << endl;
return 0; return 0;
} }