https://gitlab.inria.fr/ciao/pmns-for-sidh
Raw File
Tip revision: fc666429fa96e570fbcca250f27c25514f4ba638 authored by Cyril Bouvier on 04 November 2020, 15:12:51 UTC
Instructions on how to compile
Tip revision: fc66642
test_SIDHp434_compressed.c
/********************************************************************************************
* SIDH: an efficient supersingular isogeny cryptography library
*
* Abstract: benchmarking/testing isogeny-based key exchange SIDHp434_compressed
*********************************************************************************************/ 

#include <stdio.h>
#include <string.h>
#include "test_extras.h"
#include "../src/P434/P434_compressed_api.h"


#define SCHEME_NAME    "SIDHp434_compressed"

#define random_mod_order_A            random_mod_order_A_SIDHp434
#define random_mod_order_B            random_mod_order_B_SIDHp434
#define EphemeralKeyGeneration_A      EphemeralKeyGeneration_A_SIDHp434_Compressed
#define EphemeralKeyGeneration_B      EphemeralKeyGeneration_B_SIDHp434_Compressed
#define EphemeralSecretAgreement_A    EphemeralSecretAgreement_A_SIDHp434_Compressed
#define EphemeralSecretAgreement_B    EphemeralSecretAgreement_B_SIDHp434_Compressed

#include "test_sidh.c"
back to top