CiFEr
test.h
1 /*
2  * Copyright (c) 2018 XLAB d.o.o.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 
17 #ifndef CIFER_TEST_H
18 #define CIFER_TEST_H
19 
20 #include <munit.h>
21 
22 MunitSuite prime_suite;
23 MunitSuite keygen_suite;
24 MunitSuite matrix_suite;
25 MunitSuite vector_suite;
26 MunitSuite dlog_suite;
27 MunitSuite big_suite;
28 MunitSuite string_suite;
29 MunitSuite uniform_suite;
30 MunitSuite normal_suite;
31 MunitSuite normal_cumulative_suite;
32 MunitSuite normal_negative_suite;
33 MunitSuite normal_double_suite;
34 MunitSuite normal_double_constant_suite;
35 MunitSuite normal_cdt_suite;
36 MunitSuite ddh_suite;
37 MunitSuite damgard_suite;
38 MunitSuite ddh_multi_suite;
39 MunitSuite damgard_multi_suite;
40 MunitSuite lwe_suite;
41 MunitSuite lwe_fully_secure_suite;
42 MunitSuite ring_lwe_suite;
43 MunitSuite paillier_suite;
44 MunitSuite dmcfe_suite;
45 MunitSuite damgard_dec_multi_suite;
46 MunitSuite fhipe_suite;
47 MunitSuite fh_multi_ipe_suite;
48 MunitSuite policy_suite;
49 MunitSuite gpsw_suite;
50 MunitSuite fame_suite;
51 MunitSuite dippe_suite;
52 MunitSuite sgp_suite;
53 MunitSuite data_ser_suite;
54 MunitSuite fame_ser_suite;
55 MunitSuite gpsw_ser_suite;
56 
57 #endif