forked from microsoft/PQCrypto-SIDH
-
Notifications
You must be signed in to change notification settings - Fork 0
/
test_SIDHp751.c
22 lines (17 loc) · 929 Bytes
/
test_SIDHp751.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/********************************************************************************************
* SIDH: an efficient supersingular isogeny cryptography library
*
* Abstract: benchmarking/testing isogeny-based key exchange SIDHp751
*********************************************************************************************/
#include <stdio.h>
#include <string.h>
#include "test_extras.h"
#include "../src/P751/P751_api.h"
#define SCHEME_NAME "SIDHp751"
#define random_mod_order_A random_mod_order_A_SIDHp751
#define random_mod_order_B random_mod_order_B_SIDHp751
#define EphemeralKeyGeneration_A EphemeralKeyGeneration_A_SIDHp751
#define EphemeralKeyGeneration_B EphemeralKeyGeneration_B_SIDHp751
#define EphemeralSecretAgreement_A EphemeralSecretAgreement_A_SIDHp751
#define EphemeralSecretAgreement_B EphemeralSecretAgreement_B_SIDHp751
#include "test_sidh.c"