-
Notifications
You must be signed in to change notification settings - Fork 100
/
test_SIDHp751.c
26 lines (21 loc) · 1.03 KB
/
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
23
24
25
26
/********************************************************************************************
* SIDH: an efficient supersingular isogeny cryptography library
* Copyright (c) Microsoft Corporation
*
* Website: https://github.com/microsoft/PQCrypto-SIDH
* Released under MIT license
*
* 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"