-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpairing.cpp
24 lines (23 loc) · 886 Bytes
/
pairing.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
/* Copyright (C) 2020 Shahar Paz <shaharps [at] tau [dot] ac [dot] il>
*
* This file is part of the CRISP code.
* See <https://github.com/shapaz/CRISP>.
*
* This file may be used under the terms of the GNU General Public License
* version 3 as published by the Free Software Foundation and appearing in
* the file LICENSE.GPL included in the packaging of this file.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
#include "pairing.h"
#if PAIRING_LIB == PBC
#include "pbc.cpp"
#elif PAIRING_LIB == MCL
#include "mcl.cpp"
#endif