Skip to content
Snippets Groups Projects
Commit e6b00bf1 authored by Roman Khlopkov's avatar Roman Khlopkov 🔜 Committed by dmitriy.gerasimov
Browse files

bugs-3380

parent a515c268
No related branches found
No related tags found
No related merge requests found
......@@ -85,8 +85,8 @@ void tesla_private_and_public_keys_delete(tesla_private_key_t *private_key, tesl
void tesla_signature_delete(tesla_signature_t *signature);
///==========================================================================================
typedef int64_t __attribute__ ((aligned(32))) poly;//[ 2048 ]; //PARAM_N
typedef int64_t __attribute__ ((aligned(32))) poly_k;//[ 5 * 2048]; // PARAM_K * PARAM_N
typedef int64_t poly;//[ 2048 ]; //PARAM_N __attribute__ ((aligned(32)))
typedef int64_t poly_k;//[ 5 * 2048]; // PARAM_K * PARAM_N __attribute__ ((aligned(32)))
int64_t init_mass_poly(poly *zeta, poly *zetainv, tesla_param_t *p);
int64_t reduce(int64_t a, tesla_param_t *p);
......
......@@ -3,6 +3,9 @@ project(test)
set(CMAKE_C_STANDARD 11)
#add_subdirectory(libdap-test)
if(NOT SUBMODULES_NO_BUILD)
add_subdirectory(libdap-test)
endif()
add_subdirectory(crypto)
add_subdirectory(cert)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment