-
Notifications
You must be signed in to change notification settings - Fork 100
/
test_SIDHp610_compressed.c
26 lines (21 loc) · 1.11 KB
/
test_SIDHp610_compressed.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 SIDHp610_compressed
*********************************************************************************************/
#include <stdio.h>
#include <string.h>
#include "test_extras.h"
#include "../src/P610/P610_compressed_api.h"
#define SCHEME_NAME "SIDHp610_compressed"
#define random_mod_order_A random_mod_order_A_SIDHp610
#define random_mod_order_B random_mod_order_B_SIDHp610
#define EphemeralKeyGeneration_A EphemeralKeyGeneration_A_SIDHp610_Compressed
#define EphemeralKeyGeneration_B EphemeralKeyGeneration_B_SIDHp610_Compressed
#define EphemeralSecretAgreement_A EphemeralSecretAgreement_A_SIDHp610_Compressed
#define EphemeralSecretAgreement_B EphemeralSecretAgreement_B_SIDHp610_Compressed
#include "test_sidh.c"