Cleanup a few quirks in copy_from_pqclean (#708)

* Delete accidentally added object files

* Sort filenames when generating CMakeLists

So that execution of copy_from_pqclean on different systems doesn't 
generate different outputs each time
This commit is contained in:
Douglas Stebila 2020-04-07 13:38:24 -04:00 committed by GitHub
parent 854f074808
commit 94e37fed6a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
28 changed files with 97 additions and 97 deletions

View File

@ -6,7 +6,7 @@ if(OQS_ENABLE_KEM_{{ family }}_{{ scheme['scheme_c'] }})
{%- if impl['name']|upper != "CLEAN" %}
if(OQS_ENABLE_KEM_{{ family }}_{{ scheme['scheme_c'] }}_{{ impl['name'] }})
{%- endif %}
set(SRCS_{{ family|upper }}_{{ scheme['scheme']|upper }}_{{ impl['name']|upper }}_SRCS {% for source in impl['sources'] %}pqclean_{{ scheme['pqclean_scheme'].replace('-','_') }}_{{ impl['name'] }}/{{ source }}{% if not loop.last %} {% endif %}{% endfor %})
set(SRCS_{{ family|upper }}_{{ scheme['scheme']|upper }}_{{ impl['name']|upper }}_SRCS {% for source in impl['sources']|sort %}pqclean_{{ scheme['pqclean_scheme'].replace('-','_') }}_{{ impl['name'] }}/{{ source }}{% if not loop.last %} {% endif %}{% endfor %})
{%- if impl['name']|upper != "CLEAN" %}
else()
set(SRCS_{{ family|upper }}_{{ scheme['scheme']|upper }}_{{ impl['name']|upper }}_SRCS pqclean_{{ family }}{{ scheme['scheme'] }}_{{ impl['name'] }}/oqs_unsupported.c )

View File

@ -6,7 +6,7 @@ if(OQS_ENABLE_SIG_{{ family }}_{{ scheme['scheme_c'] }})
{%- if impl['name']|upper != "CLEAN" %}
if(OQS_ENABLE_SIG_{{ family }}_{{ scheme['scheme_c'] }}_{{ impl['name'] }})
{%- endif %}
set(SRCS_{{ family|upper }}_{{ scheme['scheme']|upper }}_{{ impl['name']|upper }}_SRCS {% for source in impl['sources'] %}pqclean_{{ scheme['pqclean_scheme'].replace('-','_') }}_{{ impl['name'] }}/{{ source }}{% if not loop.last %} {% endif %}{% endfor %})
set(SRCS_{{ family|upper }}_{{ scheme['scheme']|upper }}_{{ impl['name']|upper }}_SRCS {% for source in impl['sources']|sort %}pqclean_{{ scheme['pqclean_scheme'].replace('-','_') }}_{{ impl['name'] }}/{{ source }}{% if not loop.last %} {% endif %}{% endfor %})
{%- if impl['name']|upper != "CLEAN" %}
else()
set(SRCS_{{ family|upper }}_{{ scheme['scheme']|upper }}_{{ impl['name']|upper }}_SRCS pqclean_{{ family }}{{ scheme['scheme'] }}_{{ impl['name'] }}/oqs_unsupported.c )

View File

@ -4,7 +4,7 @@
if(OQS_ENABLE_KEM_classic_mceliece_348864)
if(OQS_ENABLE_KEM_classic_mceliece_348864_vec)
set(SRCS_CLASSIC_MCELIECE_348864_VEC_SRCS pqclean_mceliece348864_vec/util.c pqclean_mceliece348864_vec/transpose.c pqclean_mceliece348864_vec/decrypt.c pqclean_mceliece348864_vec/gf.c pqclean_mceliece348864_vec/encrypt.c pqclean_mceliece348864_vec/operations.c pqclean_mceliece348864_vec/aes256ctr.c pqclean_mceliece348864_vec/fft_tr.c pqclean_mceliece348864_vec/pk_gen.c pqclean_mceliece348864_vec/sk_gen.c pqclean_mceliece348864_vec/controlbits.c pqclean_mceliece348864_vec/fft.c pqclean_mceliece348864_vec/bm.c pqclean_mceliece348864_vec/benes.c pqclean_mceliece348864_vec/vec.c)
set(SRCS_CLASSIC_MCELIECE_348864_VEC_SRCS pqclean_mceliece348864_vec/aes256ctr.c pqclean_mceliece348864_vec/benes.c pqclean_mceliece348864_vec/bm.c pqclean_mceliece348864_vec/controlbits.c pqclean_mceliece348864_vec/decrypt.c pqclean_mceliece348864_vec/encrypt.c pqclean_mceliece348864_vec/fft.c pqclean_mceliece348864_vec/fft_tr.c pqclean_mceliece348864_vec/gf.c pqclean_mceliece348864_vec/operations.c pqclean_mceliece348864_vec/pk_gen.c pqclean_mceliece348864_vec/sk_gen.c pqclean_mceliece348864_vec/transpose.c pqclean_mceliece348864_vec/util.c pqclean_mceliece348864_vec/vec.c)
else()
set(SRCS_CLASSIC_MCELIECE_348864_VEC_SRCS pqclean_classic_mceliece348864_vec/oqs_unsupported.c )
endif()
@ -17,7 +17,7 @@ endif()
if(OQS_ENABLE_KEM_classic_mceliece_348864f)
if(OQS_ENABLE_KEM_classic_mceliece_348864f_vec)
set(SRCS_CLASSIC_MCELIECE_348864F_VEC_SRCS pqclean_mceliece348864f_vec/util.c pqclean_mceliece348864f_vec/transpose.c pqclean_mceliece348864f_vec/decrypt.c pqclean_mceliece348864f_vec/gf.c pqclean_mceliece348864f_vec/encrypt.c pqclean_mceliece348864f_vec/operations.c pqclean_mceliece348864f_vec/aes256ctr.c pqclean_mceliece348864f_vec/fft_tr.c pqclean_mceliece348864f_vec/pk_gen.c pqclean_mceliece348864f_vec/sk_gen.c pqclean_mceliece348864f_vec/controlbits.c pqclean_mceliece348864f_vec/fft.c pqclean_mceliece348864f_vec/bm.c pqclean_mceliece348864f_vec/benes.c pqclean_mceliece348864f_vec/vec.c)
set(SRCS_CLASSIC_MCELIECE_348864F_VEC_SRCS pqclean_mceliece348864f_vec/aes256ctr.c pqclean_mceliece348864f_vec/benes.c pqclean_mceliece348864f_vec/bm.c pqclean_mceliece348864f_vec/controlbits.c pqclean_mceliece348864f_vec/decrypt.c pqclean_mceliece348864f_vec/encrypt.c pqclean_mceliece348864f_vec/fft.c pqclean_mceliece348864f_vec/fft_tr.c pqclean_mceliece348864f_vec/gf.c pqclean_mceliece348864f_vec/operations.c pqclean_mceliece348864f_vec/pk_gen.c pqclean_mceliece348864f_vec/sk_gen.c pqclean_mceliece348864f_vec/transpose.c pqclean_mceliece348864f_vec/util.c pqclean_mceliece348864f_vec/vec.c)
else()
set(SRCS_CLASSIC_MCELIECE_348864F_VEC_SRCS pqclean_classic_mceliece348864f_vec/oqs_unsupported.c )
endif()
@ -30,7 +30,7 @@ endif()
if(OQS_ENABLE_KEM_classic_mceliece_460896)
if(OQS_ENABLE_KEM_classic_mceliece_460896_vec)
set(SRCS_CLASSIC_MCELIECE_460896_VEC_SRCS pqclean_mceliece460896_vec/util.c pqclean_mceliece460896_vec/transpose.c pqclean_mceliece460896_vec/decrypt.c pqclean_mceliece460896_vec/gf.c pqclean_mceliece460896_vec/encrypt.c pqclean_mceliece460896_vec/operations.c pqclean_mceliece460896_vec/aes256ctr.c pqclean_mceliece460896_vec/fft_tr.c pqclean_mceliece460896_vec/pk_gen.c pqclean_mceliece460896_vec/sk_gen.c pqclean_mceliece460896_vec/controlbits.c pqclean_mceliece460896_vec/fft.c pqclean_mceliece460896_vec/bm.c pqclean_mceliece460896_vec/benes.c pqclean_mceliece460896_vec/vec.c)
set(SRCS_CLASSIC_MCELIECE_460896_VEC_SRCS pqclean_mceliece460896_vec/aes256ctr.c pqclean_mceliece460896_vec/benes.c pqclean_mceliece460896_vec/bm.c pqclean_mceliece460896_vec/controlbits.c pqclean_mceliece460896_vec/decrypt.c pqclean_mceliece460896_vec/encrypt.c pqclean_mceliece460896_vec/fft.c pqclean_mceliece460896_vec/fft_tr.c pqclean_mceliece460896_vec/gf.c pqclean_mceliece460896_vec/operations.c pqclean_mceliece460896_vec/pk_gen.c pqclean_mceliece460896_vec/sk_gen.c pqclean_mceliece460896_vec/transpose.c pqclean_mceliece460896_vec/util.c pqclean_mceliece460896_vec/vec.c)
else()
set(SRCS_CLASSIC_MCELIECE_460896_VEC_SRCS pqclean_classic_mceliece460896_vec/oqs_unsupported.c )
endif()
@ -43,7 +43,7 @@ endif()
if(OQS_ENABLE_KEM_classic_mceliece_460896f)
if(OQS_ENABLE_KEM_classic_mceliece_460896f_vec)
set(SRCS_CLASSIC_MCELIECE_460896F_VEC_SRCS pqclean_mceliece460896f_vec/util.c pqclean_mceliece460896f_vec/transpose.c pqclean_mceliece460896f_vec/decrypt.c pqclean_mceliece460896f_vec/gf.c pqclean_mceliece460896f_vec/encrypt.c pqclean_mceliece460896f_vec/operations.c pqclean_mceliece460896f_vec/aes256ctr.c pqclean_mceliece460896f_vec/fft_tr.c pqclean_mceliece460896f_vec/pk_gen.c pqclean_mceliece460896f_vec/sk_gen.c pqclean_mceliece460896f_vec/controlbits.c pqclean_mceliece460896f_vec/fft.c pqclean_mceliece460896f_vec/bm.c pqclean_mceliece460896f_vec/benes.c pqclean_mceliece460896f_vec/vec.c)
set(SRCS_CLASSIC_MCELIECE_460896F_VEC_SRCS pqclean_mceliece460896f_vec/aes256ctr.c pqclean_mceliece460896f_vec/benes.c pqclean_mceliece460896f_vec/bm.c pqclean_mceliece460896f_vec/controlbits.c pqclean_mceliece460896f_vec/decrypt.c pqclean_mceliece460896f_vec/encrypt.c pqclean_mceliece460896f_vec/fft.c pqclean_mceliece460896f_vec/fft_tr.c pqclean_mceliece460896f_vec/gf.c pqclean_mceliece460896f_vec/operations.c pqclean_mceliece460896f_vec/pk_gen.c pqclean_mceliece460896f_vec/sk_gen.c pqclean_mceliece460896f_vec/transpose.c pqclean_mceliece460896f_vec/util.c pqclean_mceliece460896f_vec/vec.c)
else()
set(SRCS_CLASSIC_MCELIECE_460896F_VEC_SRCS pqclean_classic_mceliece460896f_vec/oqs_unsupported.c )
endif()
@ -56,7 +56,7 @@ endif()
if(OQS_ENABLE_KEM_classic_mceliece_6688128)
if(OQS_ENABLE_KEM_classic_mceliece_6688128_vec)
set(SRCS_CLASSIC_MCELIECE_6688128_VEC_SRCS pqclean_mceliece6688128_vec/util.c pqclean_mceliece6688128_vec/transpose.c pqclean_mceliece6688128_vec/decrypt.c pqclean_mceliece6688128_vec/gf.c pqclean_mceliece6688128_vec/encrypt.c pqclean_mceliece6688128_vec/operations.c pqclean_mceliece6688128_vec/aes256ctr.c pqclean_mceliece6688128_vec/fft_tr.c pqclean_mceliece6688128_vec/pk_gen.c pqclean_mceliece6688128_vec/sk_gen.c pqclean_mceliece6688128_vec/controlbits.c pqclean_mceliece6688128_vec/fft.c pqclean_mceliece6688128_vec/bm.c pqclean_mceliece6688128_vec/benes.c pqclean_mceliece6688128_vec/vec.c)
set(SRCS_CLASSIC_MCELIECE_6688128_VEC_SRCS pqclean_mceliece6688128_vec/aes256ctr.c pqclean_mceliece6688128_vec/benes.c pqclean_mceliece6688128_vec/bm.c pqclean_mceliece6688128_vec/controlbits.c pqclean_mceliece6688128_vec/decrypt.c pqclean_mceliece6688128_vec/encrypt.c pqclean_mceliece6688128_vec/fft.c pqclean_mceliece6688128_vec/fft_tr.c pqclean_mceliece6688128_vec/gf.c pqclean_mceliece6688128_vec/operations.c pqclean_mceliece6688128_vec/pk_gen.c pqclean_mceliece6688128_vec/sk_gen.c pqclean_mceliece6688128_vec/transpose.c pqclean_mceliece6688128_vec/util.c pqclean_mceliece6688128_vec/vec.c)
else()
set(SRCS_CLASSIC_MCELIECE_6688128_VEC_SRCS pqclean_classic_mceliece6688128_vec/oqs_unsupported.c )
endif()
@ -69,7 +69,7 @@ endif()
if(OQS_ENABLE_KEM_classic_mceliece_6688128f)
if(OQS_ENABLE_KEM_classic_mceliece_6688128f_vec)
set(SRCS_CLASSIC_MCELIECE_6688128F_VEC_SRCS pqclean_mceliece6688128f_vec/util.c pqclean_mceliece6688128f_vec/transpose.c pqclean_mceliece6688128f_vec/decrypt.c pqclean_mceliece6688128f_vec/gf.c pqclean_mceliece6688128f_vec/encrypt.c pqclean_mceliece6688128f_vec/operations.c pqclean_mceliece6688128f_vec/aes256ctr.c pqclean_mceliece6688128f_vec/fft_tr.c pqclean_mceliece6688128f_vec/pk_gen.c pqclean_mceliece6688128f_vec/sk_gen.c pqclean_mceliece6688128f_vec/controlbits.c pqclean_mceliece6688128f_vec/fft.c pqclean_mceliece6688128f_vec/bm.c pqclean_mceliece6688128f_vec/benes.c pqclean_mceliece6688128f_vec/vec.c)
set(SRCS_CLASSIC_MCELIECE_6688128F_VEC_SRCS pqclean_mceliece6688128f_vec/aes256ctr.c pqclean_mceliece6688128f_vec/benes.c pqclean_mceliece6688128f_vec/bm.c pqclean_mceliece6688128f_vec/controlbits.c pqclean_mceliece6688128f_vec/decrypt.c pqclean_mceliece6688128f_vec/encrypt.c pqclean_mceliece6688128f_vec/fft.c pqclean_mceliece6688128f_vec/fft_tr.c pqclean_mceliece6688128f_vec/gf.c pqclean_mceliece6688128f_vec/operations.c pqclean_mceliece6688128f_vec/pk_gen.c pqclean_mceliece6688128f_vec/sk_gen.c pqclean_mceliece6688128f_vec/transpose.c pqclean_mceliece6688128f_vec/util.c pqclean_mceliece6688128f_vec/vec.c)
else()
set(SRCS_CLASSIC_MCELIECE_6688128F_VEC_SRCS pqclean_classic_mceliece6688128f_vec/oqs_unsupported.c )
endif()
@ -82,7 +82,7 @@ endif()
if(OQS_ENABLE_KEM_classic_mceliece_6960119)
if(OQS_ENABLE_KEM_classic_mceliece_6960119_vec)
set(SRCS_CLASSIC_MCELIECE_6960119_VEC_SRCS pqclean_mceliece6960119_vec/util.c pqclean_mceliece6960119_vec/transpose.c pqclean_mceliece6960119_vec/decrypt.c pqclean_mceliece6960119_vec/gf.c pqclean_mceliece6960119_vec/encrypt.c pqclean_mceliece6960119_vec/operations.c pqclean_mceliece6960119_vec/aes256ctr.c pqclean_mceliece6960119_vec/fft_tr.c pqclean_mceliece6960119_vec/pk_gen.c pqclean_mceliece6960119_vec/sk_gen.c pqclean_mceliece6960119_vec/controlbits.c pqclean_mceliece6960119_vec/fft.c pqclean_mceliece6960119_vec/bm.c pqclean_mceliece6960119_vec/benes.c pqclean_mceliece6960119_vec/vec.c)
set(SRCS_CLASSIC_MCELIECE_6960119_VEC_SRCS pqclean_mceliece6960119_vec/aes256ctr.c pqclean_mceliece6960119_vec/benes.c pqclean_mceliece6960119_vec/bm.c pqclean_mceliece6960119_vec/controlbits.c pqclean_mceliece6960119_vec/decrypt.c pqclean_mceliece6960119_vec/encrypt.c pqclean_mceliece6960119_vec/fft.c pqclean_mceliece6960119_vec/fft_tr.c pqclean_mceliece6960119_vec/gf.c pqclean_mceliece6960119_vec/operations.c pqclean_mceliece6960119_vec/pk_gen.c pqclean_mceliece6960119_vec/sk_gen.c pqclean_mceliece6960119_vec/transpose.c pqclean_mceliece6960119_vec/util.c pqclean_mceliece6960119_vec/vec.c)
else()
set(SRCS_CLASSIC_MCELIECE_6960119_VEC_SRCS pqclean_classic_mceliece6960119_vec/oqs_unsupported.c )
endif()
@ -95,7 +95,7 @@ endif()
if(OQS_ENABLE_KEM_classic_mceliece_6960119f)
if(OQS_ENABLE_KEM_classic_mceliece_6960119f_vec)
set(SRCS_CLASSIC_MCELIECE_6960119F_VEC_SRCS pqclean_mceliece6960119f_vec/util.c pqclean_mceliece6960119f_vec/transpose.c pqclean_mceliece6960119f_vec/decrypt.c pqclean_mceliece6960119f_vec/gf.c pqclean_mceliece6960119f_vec/encrypt.c pqclean_mceliece6960119f_vec/operations.c pqclean_mceliece6960119f_vec/aes256ctr.c pqclean_mceliece6960119f_vec/fft_tr.c pqclean_mceliece6960119f_vec/pk_gen.c pqclean_mceliece6960119f_vec/sk_gen.c pqclean_mceliece6960119f_vec/controlbits.c pqclean_mceliece6960119f_vec/fft.c pqclean_mceliece6960119f_vec/bm.c pqclean_mceliece6960119f_vec/benes.c pqclean_mceliece6960119f_vec/vec.c)
set(SRCS_CLASSIC_MCELIECE_6960119F_VEC_SRCS pqclean_mceliece6960119f_vec/aes256ctr.c pqclean_mceliece6960119f_vec/benes.c pqclean_mceliece6960119f_vec/bm.c pqclean_mceliece6960119f_vec/controlbits.c pqclean_mceliece6960119f_vec/decrypt.c pqclean_mceliece6960119f_vec/encrypt.c pqclean_mceliece6960119f_vec/fft.c pqclean_mceliece6960119f_vec/fft_tr.c pqclean_mceliece6960119f_vec/gf.c pqclean_mceliece6960119f_vec/operations.c pqclean_mceliece6960119f_vec/pk_gen.c pqclean_mceliece6960119f_vec/sk_gen.c pqclean_mceliece6960119f_vec/transpose.c pqclean_mceliece6960119f_vec/util.c pqclean_mceliece6960119f_vec/vec.c)
else()
set(SRCS_CLASSIC_MCELIECE_6960119F_VEC_SRCS pqclean_classic_mceliece6960119f_vec/oqs_unsupported.c )
endif()
@ -108,7 +108,7 @@ endif()
if(OQS_ENABLE_KEM_classic_mceliece_8192128)
if(OQS_ENABLE_KEM_classic_mceliece_8192128_vec)
set(SRCS_CLASSIC_MCELIECE_8192128_VEC_SRCS pqclean_mceliece8192128_vec/util.c pqclean_mceliece8192128_vec/transpose.c pqclean_mceliece8192128_vec/decrypt.c pqclean_mceliece8192128_vec/gf.c pqclean_mceliece8192128_vec/encrypt.c pqclean_mceliece8192128_vec/operations.c pqclean_mceliece8192128_vec/aes256ctr.c pqclean_mceliece8192128_vec/fft_tr.c pqclean_mceliece8192128_vec/pk_gen.c pqclean_mceliece8192128_vec/sk_gen.c pqclean_mceliece8192128_vec/controlbits.c pqclean_mceliece8192128_vec/fft.c pqclean_mceliece8192128_vec/bm.c pqclean_mceliece8192128_vec/benes.c pqclean_mceliece8192128_vec/vec.c)
set(SRCS_CLASSIC_MCELIECE_8192128_VEC_SRCS pqclean_mceliece8192128_vec/aes256ctr.c pqclean_mceliece8192128_vec/benes.c pqclean_mceliece8192128_vec/bm.c pqclean_mceliece8192128_vec/controlbits.c pqclean_mceliece8192128_vec/decrypt.c pqclean_mceliece8192128_vec/encrypt.c pqclean_mceliece8192128_vec/fft.c pqclean_mceliece8192128_vec/fft_tr.c pqclean_mceliece8192128_vec/gf.c pqclean_mceliece8192128_vec/operations.c pqclean_mceliece8192128_vec/pk_gen.c pqclean_mceliece8192128_vec/sk_gen.c pqclean_mceliece8192128_vec/transpose.c pqclean_mceliece8192128_vec/util.c pqclean_mceliece8192128_vec/vec.c)
else()
set(SRCS_CLASSIC_MCELIECE_8192128_VEC_SRCS pqclean_classic_mceliece8192128_vec/oqs_unsupported.c )
endif()
@ -121,7 +121,7 @@ endif()
if(OQS_ENABLE_KEM_classic_mceliece_8192128f)
if(OQS_ENABLE_KEM_classic_mceliece_8192128f_vec)
set(SRCS_CLASSIC_MCELIECE_8192128F_VEC_SRCS pqclean_mceliece8192128f_vec/util.c pqclean_mceliece8192128f_vec/transpose.c pqclean_mceliece8192128f_vec/decrypt.c pqclean_mceliece8192128f_vec/gf.c pqclean_mceliece8192128f_vec/encrypt.c pqclean_mceliece8192128f_vec/operations.c pqclean_mceliece8192128f_vec/aes256ctr.c pqclean_mceliece8192128f_vec/fft_tr.c pqclean_mceliece8192128f_vec/pk_gen.c pqclean_mceliece8192128f_vec/sk_gen.c pqclean_mceliece8192128f_vec/controlbits.c pqclean_mceliece8192128f_vec/fft.c pqclean_mceliece8192128f_vec/bm.c pqclean_mceliece8192128f_vec/benes.c pqclean_mceliece8192128f_vec/vec.c)
set(SRCS_CLASSIC_MCELIECE_8192128F_VEC_SRCS pqclean_mceliece8192128f_vec/aes256ctr.c pqclean_mceliece8192128f_vec/benes.c pqclean_mceliece8192128f_vec/bm.c pqclean_mceliece8192128f_vec/controlbits.c pqclean_mceliece8192128f_vec/decrypt.c pqclean_mceliece8192128f_vec/encrypt.c pqclean_mceliece8192128f_vec/fft.c pqclean_mceliece8192128f_vec/fft_tr.c pqclean_mceliece8192128f_vec/gf.c pqclean_mceliece8192128f_vec/operations.c pqclean_mceliece8192128f_vec/pk_gen.c pqclean_mceliece8192128f_vec/sk_gen.c pqclean_mceliece8192128f_vec/transpose.c pqclean_mceliece8192128f_vec/util.c pqclean_mceliece8192128f_vec/vec.c)
else()
set(SRCS_CLASSIC_MCELIECE_8192128F_VEC_SRCS pqclean_classic_mceliece8192128f_vec/oqs_unsupported.c )
endif()

View File

@ -3,10 +3,10 @@
if(OQS_ENABLE_KEM_kyber_512)
set(SRCS_KYBER_512_CLEAN_SRCS pqclean_kyber512_clean/kem.c pqclean_kyber512_clean/verify.c pqclean_kyber512_clean/indcpa.c pqclean_kyber512_clean/symmetric-fips202.c pqclean_kyber512_clean/poly.c pqclean_kyber512_clean/ntt.c pqclean_kyber512_clean/cbd.c pqclean_kyber512_clean/reduce.c pqclean_kyber512_clean/polyvec.c)
set(SRCS_KYBER_512_CLEAN_SRCS pqclean_kyber512_clean/cbd.c pqclean_kyber512_clean/indcpa.c pqclean_kyber512_clean/kem.c pqclean_kyber512_clean/ntt.c pqclean_kyber512_clean/poly.c pqclean_kyber512_clean/polyvec.c pqclean_kyber512_clean/reduce.c pqclean_kyber512_clean/symmetric-fips202.c pqclean_kyber512_clean/verify.c)
if(OQS_ENABLE_KEM_kyber_512_avx2)
set(SRCS_KYBER_512_AVX2_SRCS pqclean_kyber512_avx2/kem.c pqclean_kyber512_avx2/shuffle.s pqclean_kyber512_avx2/verify.c pqclean_kyber512_avx2/basemul.S pqclean_kyber512_avx2/indcpa.c pqclean_kyber512_avx2/consts.c pqclean_kyber512_avx2/rejsample.c pqclean_kyber512_avx2/symmetric-fips202.c pqclean_kyber512_avx2/ntt.s pqclean_kyber512_avx2/poly.c pqclean_kyber512_avx2/fips202x4.c pqclean_kyber512_avx2/fq.s pqclean_kyber512_avx2/cbd.c pqclean_kyber512_avx2/invntt.s pqclean_kyber512_avx2/polyvec.c)
set(SRCS_KYBER_512_AVX2_SRCS pqclean_kyber512_avx2/basemul.S pqclean_kyber512_avx2/cbd.c pqclean_kyber512_avx2/consts.c pqclean_kyber512_avx2/fips202x4.c pqclean_kyber512_avx2/fq.s pqclean_kyber512_avx2/indcpa.c pqclean_kyber512_avx2/invntt.s pqclean_kyber512_avx2/kem.c pqclean_kyber512_avx2/ntt.s pqclean_kyber512_avx2/poly.c pqclean_kyber512_avx2/polyvec.c pqclean_kyber512_avx2/rejsample.c pqclean_kyber512_avx2/shuffle.s pqclean_kyber512_avx2/symmetric-fips202.c pqclean_kyber512_avx2/verify.c)
else()
set(SRCS_KYBER_512_AVX2_SRCS pqclean_kyber512_avx2/oqs_unsupported.c )
endif()
@ -17,10 +17,10 @@ endif()
if(OQS_ENABLE_KEM_kyber_768)
set(SRCS_KYBER_768_CLEAN_SRCS pqclean_kyber768_clean/kem.c pqclean_kyber768_clean/verify.c pqclean_kyber768_clean/indcpa.c pqclean_kyber768_clean/symmetric-fips202.c pqclean_kyber768_clean/poly.c pqclean_kyber768_clean/ntt.c pqclean_kyber768_clean/cbd.c pqclean_kyber768_clean/reduce.c pqclean_kyber768_clean/polyvec.c)
set(SRCS_KYBER_768_CLEAN_SRCS pqclean_kyber768_clean/cbd.c pqclean_kyber768_clean/indcpa.c pqclean_kyber768_clean/kem.c pqclean_kyber768_clean/ntt.c pqclean_kyber768_clean/poly.c pqclean_kyber768_clean/polyvec.c pqclean_kyber768_clean/reduce.c pqclean_kyber768_clean/symmetric-fips202.c pqclean_kyber768_clean/verify.c)
if(OQS_ENABLE_KEM_kyber_768_avx2)
set(SRCS_KYBER_768_AVX2_SRCS pqclean_kyber768_avx2/kem.c pqclean_kyber768_avx2/shuffle.s pqclean_kyber768_avx2/verify.c pqclean_kyber768_avx2/basemul.S pqclean_kyber768_avx2/indcpa.c pqclean_kyber768_avx2/consts.c pqclean_kyber768_avx2/rejsample.c pqclean_kyber768_avx2/symmetric-fips202.c pqclean_kyber768_avx2/ntt.s pqclean_kyber768_avx2/poly.c pqclean_kyber768_avx2/fips202x4.c pqclean_kyber768_avx2/fq.s pqclean_kyber768_avx2/cbd.c pqclean_kyber768_avx2/invntt.s pqclean_kyber768_avx2/polyvec.c)
set(SRCS_KYBER_768_AVX2_SRCS pqclean_kyber768_avx2/basemul.S pqclean_kyber768_avx2/cbd.c pqclean_kyber768_avx2/consts.c pqclean_kyber768_avx2/fips202x4.c pqclean_kyber768_avx2/fq.s pqclean_kyber768_avx2/indcpa.c pqclean_kyber768_avx2/invntt.s pqclean_kyber768_avx2/kem.c pqclean_kyber768_avx2/ntt.s pqclean_kyber768_avx2/poly.c pqclean_kyber768_avx2/polyvec.c pqclean_kyber768_avx2/rejsample.c pqclean_kyber768_avx2/shuffle.s pqclean_kyber768_avx2/symmetric-fips202.c pqclean_kyber768_avx2/verify.c)
else()
set(SRCS_KYBER_768_AVX2_SRCS pqclean_kyber768_avx2/oqs_unsupported.c )
endif()
@ -31,10 +31,10 @@ endif()
if(OQS_ENABLE_KEM_kyber_1024)
set(SRCS_KYBER_1024_CLEAN_SRCS pqclean_kyber1024_clean/kem.c pqclean_kyber1024_clean/verify.c pqclean_kyber1024_clean/indcpa.c pqclean_kyber1024_clean/symmetric-fips202.c pqclean_kyber1024_clean/poly.c pqclean_kyber1024_clean/ntt.c pqclean_kyber1024_clean/cbd.c pqclean_kyber1024_clean/reduce.c pqclean_kyber1024_clean/polyvec.c)
set(SRCS_KYBER_1024_CLEAN_SRCS pqclean_kyber1024_clean/cbd.c pqclean_kyber1024_clean/indcpa.c pqclean_kyber1024_clean/kem.c pqclean_kyber1024_clean/ntt.c pqclean_kyber1024_clean/poly.c pqclean_kyber1024_clean/polyvec.c pqclean_kyber1024_clean/reduce.c pqclean_kyber1024_clean/symmetric-fips202.c pqclean_kyber1024_clean/verify.c)
if(OQS_ENABLE_KEM_kyber_1024_avx2)
set(SRCS_KYBER_1024_AVX2_SRCS pqclean_kyber1024_avx2/kem.c pqclean_kyber1024_avx2/shuffle.s pqclean_kyber1024_avx2/verify.c pqclean_kyber1024_avx2/basemul.S pqclean_kyber1024_avx2/indcpa.c pqclean_kyber1024_avx2/consts.c pqclean_kyber1024_avx2/rejsample.c pqclean_kyber1024_avx2/symmetric-fips202.c pqclean_kyber1024_avx2/ntt.s pqclean_kyber1024_avx2/poly.c pqclean_kyber1024_avx2/fips202x4.c pqclean_kyber1024_avx2/fq.s pqclean_kyber1024_avx2/cbd.c pqclean_kyber1024_avx2/invntt.s pqclean_kyber1024_avx2/polyvec.c)
set(SRCS_KYBER_1024_AVX2_SRCS pqclean_kyber1024_avx2/basemul.S pqclean_kyber1024_avx2/cbd.c pqclean_kyber1024_avx2/consts.c pqclean_kyber1024_avx2/fips202x4.c pqclean_kyber1024_avx2/fq.s pqclean_kyber1024_avx2/indcpa.c pqclean_kyber1024_avx2/invntt.s pqclean_kyber1024_avx2/kem.c pqclean_kyber1024_avx2/ntt.s pqclean_kyber1024_avx2/poly.c pqclean_kyber1024_avx2/polyvec.c pqclean_kyber1024_avx2/rejsample.c pqclean_kyber1024_avx2/shuffle.s pqclean_kyber1024_avx2/symmetric-fips202.c pqclean_kyber1024_avx2/verify.c)
else()
set(SRCS_KYBER_1024_AVX2_SRCS pqclean_kyber1024_avx2/oqs_unsupported.c )
endif()
@ -45,10 +45,10 @@ endif()
if(OQS_ENABLE_KEM_kyber_512_90s)
set(SRCS_KYBER_512_90S_CLEAN_SRCS pqclean_kyber512_90s_clean/kem.c pqclean_kyber512_90s_clean/verify.c pqclean_kyber512_90s_clean/indcpa.c pqclean_kyber512_90s_clean/aes256ctr.c pqclean_kyber512_90s_clean/poly.c pqclean_kyber512_90s_clean/ntt.c pqclean_kyber512_90s_clean/cbd.c pqclean_kyber512_90s_clean/reduce.c pqclean_kyber512_90s_clean/polyvec.c)
set(SRCS_KYBER_512_90S_CLEAN_SRCS pqclean_kyber512_90s_clean/aes256ctr.c pqclean_kyber512_90s_clean/cbd.c pqclean_kyber512_90s_clean/indcpa.c pqclean_kyber512_90s_clean/kem.c pqclean_kyber512_90s_clean/ntt.c pqclean_kyber512_90s_clean/poly.c pqclean_kyber512_90s_clean/polyvec.c pqclean_kyber512_90s_clean/reduce.c pqclean_kyber512_90s_clean/verify.c)
if(OQS_ENABLE_KEM_kyber_512_90s_avx2)
set(SRCS_KYBER_512_90S_AVX2_SRCS pqclean_kyber512_90s_avx2/kem.c pqclean_kyber512_90s_avx2/shuffle.s pqclean_kyber512_90s_avx2/verify.c pqclean_kyber512_90s_avx2/basemul.S pqclean_kyber512_90s_avx2/indcpa.c pqclean_kyber512_90s_avx2/consts.c pqclean_kyber512_90s_avx2/rejsample.c pqclean_kyber512_90s_avx2/aes256ctr.c pqclean_kyber512_90s_avx2/ntt.s pqclean_kyber512_90s_avx2/poly.c pqclean_kyber512_90s_avx2/fq.s pqclean_kyber512_90s_avx2/cbd.c pqclean_kyber512_90s_avx2/invntt.s pqclean_kyber512_90s_avx2/polyvec.c)
set(SRCS_KYBER_512_90S_AVX2_SRCS pqclean_kyber512_90s_avx2/aes256ctr.c pqclean_kyber512_90s_avx2/basemul.S pqclean_kyber512_90s_avx2/cbd.c pqclean_kyber512_90s_avx2/consts.c pqclean_kyber512_90s_avx2/fq.s pqclean_kyber512_90s_avx2/indcpa.c pqclean_kyber512_90s_avx2/invntt.s pqclean_kyber512_90s_avx2/kem.c pqclean_kyber512_90s_avx2/ntt.s pqclean_kyber512_90s_avx2/poly.c pqclean_kyber512_90s_avx2/polyvec.c pqclean_kyber512_90s_avx2/rejsample.c pqclean_kyber512_90s_avx2/shuffle.s pqclean_kyber512_90s_avx2/verify.c)
else()
set(SRCS_KYBER_512_90S_AVX2_SRCS pqclean_kyber512_90s_avx2/oqs_unsupported.c )
endif()
@ -59,10 +59,10 @@ endif()
if(OQS_ENABLE_KEM_kyber_768_90s)
set(SRCS_KYBER_768_90S_CLEAN_SRCS pqclean_kyber768_90s_clean/kem.c pqclean_kyber768_90s_clean/verify.c pqclean_kyber768_90s_clean/indcpa.c pqclean_kyber768_90s_clean/aes256ctr.c pqclean_kyber768_90s_clean/poly.c pqclean_kyber768_90s_clean/ntt.c pqclean_kyber768_90s_clean/cbd.c pqclean_kyber768_90s_clean/reduce.c pqclean_kyber768_90s_clean/polyvec.c)
set(SRCS_KYBER_768_90S_CLEAN_SRCS pqclean_kyber768_90s_clean/aes256ctr.c pqclean_kyber768_90s_clean/cbd.c pqclean_kyber768_90s_clean/indcpa.c pqclean_kyber768_90s_clean/kem.c pqclean_kyber768_90s_clean/ntt.c pqclean_kyber768_90s_clean/poly.c pqclean_kyber768_90s_clean/polyvec.c pqclean_kyber768_90s_clean/reduce.c pqclean_kyber768_90s_clean/verify.c)
if(OQS_ENABLE_KEM_kyber_768_90s_avx2)
set(SRCS_KYBER_768_90S_AVX2_SRCS pqclean_kyber768_90s_avx2/kem.c pqclean_kyber768_90s_avx2/shuffle.s pqclean_kyber768_90s_avx2/verify.c pqclean_kyber768_90s_avx2/basemul.S pqclean_kyber768_90s_avx2/indcpa.c pqclean_kyber768_90s_avx2/consts.c pqclean_kyber768_90s_avx2/rejsample.c pqclean_kyber768_90s_avx2/aes256ctr.c pqclean_kyber768_90s_avx2/ntt.s pqclean_kyber768_90s_avx2/poly.c pqclean_kyber768_90s_avx2/fq.s pqclean_kyber768_90s_avx2/cbd.c pqclean_kyber768_90s_avx2/invntt.s pqclean_kyber768_90s_avx2/polyvec.c)
set(SRCS_KYBER_768_90S_AVX2_SRCS pqclean_kyber768_90s_avx2/aes256ctr.c pqclean_kyber768_90s_avx2/basemul.S pqclean_kyber768_90s_avx2/cbd.c pqclean_kyber768_90s_avx2/consts.c pqclean_kyber768_90s_avx2/fq.s pqclean_kyber768_90s_avx2/indcpa.c pqclean_kyber768_90s_avx2/invntt.s pqclean_kyber768_90s_avx2/kem.c pqclean_kyber768_90s_avx2/ntt.s pqclean_kyber768_90s_avx2/poly.c pqclean_kyber768_90s_avx2/polyvec.c pqclean_kyber768_90s_avx2/rejsample.c pqclean_kyber768_90s_avx2/shuffle.s pqclean_kyber768_90s_avx2/verify.c)
else()
set(SRCS_KYBER_768_90S_AVX2_SRCS pqclean_kyber768_90s_avx2/oqs_unsupported.c )
endif()
@ -73,10 +73,10 @@ endif()
if(OQS_ENABLE_KEM_kyber_1024_90s)
set(SRCS_KYBER_1024_90S_CLEAN_SRCS pqclean_kyber1024_90s_clean/kem.c pqclean_kyber1024_90s_clean/verify.c pqclean_kyber1024_90s_clean/indcpa.c pqclean_kyber1024_90s_clean/aes256ctr.c pqclean_kyber1024_90s_clean/poly.c pqclean_kyber1024_90s_clean/ntt.c pqclean_kyber1024_90s_clean/cbd.c pqclean_kyber1024_90s_clean/reduce.c pqclean_kyber1024_90s_clean/polyvec.c)
set(SRCS_KYBER_1024_90S_CLEAN_SRCS pqclean_kyber1024_90s_clean/aes256ctr.c pqclean_kyber1024_90s_clean/cbd.c pqclean_kyber1024_90s_clean/indcpa.c pqclean_kyber1024_90s_clean/kem.c pqclean_kyber1024_90s_clean/ntt.c pqclean_kyber1024_90s_clean/poly.c pqclean_kyber1024_90s_clean/polyvec.c pqclean_kyber1024_90s_clean/reduce.c pqclean_kyber1024_90s_clean/verify.c)
if(OQS_ENABLE_KEM_kyber_1024_90s_avx2)
set(SRCS_KYBER_1024_90S_AVX2_SRCS pqclean_kyber1024_90s_avx2/kem.c pqclean_kyber1024_90s_avx2/shuffle.s pqclean_kyber1024_90s_avx2/verify.c pqclean_kyber1024_90s_avx2/basemul.S pqclean_kyber1024_90s_avx2/indcpa.c pqclean_kyber1024_90s_avx2/consts.c pqclean_kyber1024_90s_avx2/rejsample.c pqclean_kyber1024_90s_avx2/aes256ctr.c pqclean_kyber1024_90s_avx2/ntt.s pqclean_kyber1024_90s_avx2/poly.c pqclean_kyber1024_90s_avx2/fq.s pqclean_kyber1024_90s_avx2/cbd.c pqclean_kyber1024_90s_avx2/invntt.s pqclean_kyber1024_90s_avx2/polyvec.c)
set(SRCS_KYBER_1024_90S_AVX2_SRCS pqclean_kyber1024_90s_avx2/aes256ctr.c pqclean_kyber1024_90s_avx2/basemul.S pqclean_kyber1024_90s_avx2/cbd.c pqclean_kyber1024_90s_avx2/consts.c pqclean_kyber1024_90s_avx2/fq.s pqclean_kyber1024_90s_avx2/indcpa.c pqclean_kyber1024_90s_avx2/invntt.s pqclean_kyber1024_90s_avx2/kem.c pqclean_kyber1024_90s_avx2/ntt.s pqclean_kyber1024_90s_avx2/poly.c pqclean_kyber1024_90s_avx2/polyvec.c pqclean_kyber1024_90s_avx2/rejsample.c pqclean_kyber1024_90s_avx2/shuffle.s pqclean_kyber1024_90s_avx2/verify.c)
else()
set(SRCS_KYBER_1024_90S_AVX2_SRCS pqclean_kyber1024_90s_avx2/oqs_unsupported.c )
endif()

View File

@ -4,7 +4,7 @@
if(OQS_ENABLE_KEM_ledacrypt_ledakemlt12)
if(OQS_ENABLE_KEM_ledacrypt_ledakemlt12_leaktime)
set(SRCS_LEDACRYPT_LEDAKEMLT12_LEAKTIME_SRCS pqclean_ledakemlt12_leaktime/gf2x_arith_mod_xPplusOne.c pqclean_ledakemlt12_leaktime/kem.c pqclean_ledakemlt12_leaktime/bf_decoding.c pqclean_ledakemlt12_leaktime/gf2x_arith.c pqclean_ledakemlt12_leaktime/sort.c pqclean_ledakemlt12_leaktime/dfr_test.c pqclean_ledakemlt12_leaktime/utils.c pqclean_ledakemlt12_leaktime/H_Q_matrices_generation.c pqclean_ledakemlt12_leaktime/rng.c pqclean_ledakemlt12_leaktime/niederreiter.c)
set(SRCS_LEDACRYPT_LEDAKEMLT12_LEAKTIME_SRCS pqclean_ledakemlt12_leaktime/bf_decoding.c pqclean_ledakemlt12_leaktime/dfr_test.c pqclean_ledakemlt12_leaktime/gf2x_arith.c pqclean_ledakemlt12_leaktime/gf2x_arith_mod_xPplusOne.c pqclean_ledakemlt12_leaktime/H_Q_matrices_generation.c pqclean_ledakemlt12_leaktime/kem.c pqclean_ledakemlt12_leaktime/niederreiter.c pqclean_ledakemlt12_leaktime/rng.c pqclean_ledakemlt12_leaktime/sort.c pqclean_ledakemlt12_leaktime/utils.c)
else()
set(SRCS_LEDACRYPT_LEDAKEMLT12_LEAKTIME_SRCS pqclean_ledacryptledakemlt12_leaktime/oqs_unsupported.c )
endif()
@ -17,7 +17,7 @@ endif()
if(OQS_ENABLE_KEM_ledacrypt_ledakemlt32)
if(OQS_ENABLE_KEM_ledacrypt_ledakemlt32_leaktime)
set(SRCS_LEDACRYPT_LEDAKEMLT32_LEAKTIME_SRCS pqclean_ledakemlt32_leaktime/gf2x_arith_mod_xPplusOne.c pqclean_ledakemlt32_leaktime/kem.c pqclean_ledakemlt32_leaktime/bf_decoding.c pqclean_ledakemlt32_leaktime/gf2x_arith.c pqclean_ledakemlt32_leaktime/sort.c pqclean_ledakemlt32_leaktime/dfr_test.c pqclean_ledakemlt32_leaktime/utils.c pqclean_ledakemlt32_leaktime/H_Q_matrices_generation.c pqclean_ledakemlt32_leaktime/rng.c pqclean_ledakemlt32_leaktime/niederreiter.c)
set(SRCS_LEDACRYPT_LEDAKEMLT32_LEAKTIME_SRCS pqclean_ledakemlt32_leaktime/bf_decoding.c pqclean_ledakemlt32_leaktime/dfr_test.c pqclean_ledakemlt32_leaktime/gf2x_arith.c pqclean_ledakemlt32_leaktime/gf2x_arith_mod_xPplusOne.c pqclean_ledakemlt32_leaktime/H_Q_matrices_generation.c pqclean_ledakemlt32_leaktime/kem.c pqclean_ledakemlt32_leaktime/niederreiter.c pqclean_ledakemlt32_leaktime/rng.c pqclean_ledakemlt32_leaktime/sort.c pqclean_ledakemlt32_leaktime/utils.c)
else()
set(SRCS_LEDACRYPT_LEDAKEMLT32_LEAKTIME_SRCS pqclean_ledacryptledakemlt32_leaktime/oqs_unsupported.c )
endif()
@ -30,7 +30,7 @@ endif()
if(OQS_ENABLE_KEM_ledacrypt_ledakemlt52)
if(OQS_ENABLE_KEM_ledacrypt_ledakemlt52_leaktime)
set(SRCS_LEDACRYPT_LEDAKEMLT52_LEAKTIME_SRCS pqclean_ledakemlt52_leaktime/gf2x_arith_mod_xPplusOne.c pqclean_ledakemlt52_leaktime/kem.c pqclean_ledakemlt52_leaktime/bf_decoding.c pqclean_ledakemlt52_leaktime/gf2x_arith.c pqclean_ledakemlt52_leaktime/sort.c pqclean_ledakemlt52_leaktime/dfr_test.c pqclean_ledakemlt52_leaktime/utils.c pqclean_ledakemlt52_leaktime/H_Q_matrices_generation.c pqclean_ledakemlt52_leaktime/rng.c pqclean_ledakemlt52_leaktime/niederreiter.c)
set(SRCS_LEDACRYPT_LEDAKEMLT52_LEAKTIME_SRCS pqclean_ledakemlt52_leaktime/bf_decoding.c pqclean_ledakemlt52_leaktime/dfr_test.c pqclean_ledakemlt52_leaktime/gf2x_arith.c pqclean_ledakemlt52_leaktime/gf2x_arith_mod_xPplusOne.c pqclean_ledakemlt52_leaktime/H_Q_matrices_generation.c pqclean_ledakemlt52_leaktime/kem.c pqclean_ledakemlt52_leaktime/niederreiter.c pqclean_ledakemlt52_leaktime/rng.c pqclean_ledakemlt52_leaktime/sort.c pqclean_ledakemlt52_leaktime/utils.c)
else()
set(SRCS_LEDACRYPT_LEDAKEMLT52_LEAKTIME_SRCS pqclean_ledacryptledakemlt52_leaktime/oqs_unsupported.c )
endif()

View File

@ -3,7 +3,7 @@
if(OQS_ENABLE_KEM_newhope_512cca)
set(SRCS_NEWHOPE_512CCA_CLEAN_SRCS pqclean_newhope512cca_clean/kem.c pqclean_newhope512cca_clean/verify.c pqclean_newhope512cca_clean/cpapke.c pqclean_newhope512cca_clean/poly.c pqclean_newhope512cca_clean/ntt.c pqclean_newhope512cca_clean/precomp.c pqclean_newhope512cca_clean/reduce.c)
set(SRCS_NEWHOPE_512CCA_CLEAN_SRCS pqclean_newhope512cca_clean/cpapke.c pqclean_newhope512cca_clean/kem.c pqclean_newhope512cca_clean/ntt.c pqclean_newhope512cca_clean/poly.c pqclean_newhope512cca_clean/precomp.c pqclean_newhope512cca_clean/reduce.c pqclean_newhope512cca_clean/verify.c)
set(SRCS_NEWHOPE_512CCA_CLEAN_SRCS ${SRCS_NEWHOPE_512CCA_CLEAN_SRCS} kem_newhope_512cca.c )
@ -12,7 +12,7 @@ endif()
if(OQS_ENABLE_KEM_newhope_1024cca)
set(SRCS_NEWHOPE_1024CCA_CLEAN_SRCS pqclean_newhope1024cca_clean/kem.c pqclean_newhope1024cca_clean/verify.c pqclean_newhope1024cca_clean/cpapke.c pqclean_newhope1024cca_clean/poly.c pqclean_newhope1024cca_clean/ntt.c pqclean_newhope1024cca_clean/precomp.c pqclean_newhope1024cca_clean/reduce.c)
set(SRCS_NEWHOPE_1024CCA_CLEAN_SRCS pqclean_newhope1024cca_clean/cpapke.c pqclean_newhope1024cca_clean/kem.c pqclean_newhope1024cca_clean/ntt.c pqclean_newhope1024cca_clean/poly.c pqclean_newhope1024cca_clean/precomp.c pqclean_newhope1024cca_clean/reduce.c pqclean_newhope1024cca_clean/verify.c)
set(SRCS_NEWHOPE_1024CCA_CLEAN_SRCS ${SRCS_NEWHOPE_1024CCA_CLEAN_SRCS} kem_newhope_1024cca.c )

View File

@ -3,7 +3,7 @@
if(OQS_ENABLE_KEM_ntru_hps2048509)
set(SRCS_NTRU_HPS2048509_CLEAN_SRCS pqclean_ntruhps2048509_clean/kem.c pqclean_ntruhps2048509_clean/verify.c pqclean_ntruhps2048509_clean/pack3.c pqclean_ntruhps2048509_clean/crypto_sort.c pqclean_ntruhps2048509_clean/packq.c pqclean_ntruhps2048509_clean/owcpa.c pqclean_ntruhps2048509_clean/sample.c pqclean_ntruhps2048509_clean/poly.c)
set(SRCS_NTRU_HPS2048509_CLEAN_SRCS pqclean_ntruhps2048509_clean/crypto_sort.c pqclean_ntruhps2048509_clean/kem.c pqclean_ntruhps2048509_clean/owcpa.c pqclean_ntruhps2048509_clean/pack3.c pqclean_ntruhps2048509_clean/packq.c pqclean_ntruhps2048509_clean/poly.c pqclean_ntruhps2048509_clean/sample.c pqclean_ntruhps2048509_clean/verify.c)
set(SRCS_NTRU_HPS2048509_CLEAN_SRCS ${SRCS_NTRU_HPS2048509_CLEAN_SRCS} kem_ntru_hps2048509.c )
@ -12,7 +12,7 @@ endif()
if(OQS_ENABLE_KEM_ntru_hps2048677)
set(SRCS_NTRU_HPS2048677_CLEAN_SRCS pqclean_ntruhps2048677_clean/kem.c pqclean_ntruhps2048677_clean/verify.c pqclean_ntruhps2048677_clean/pack3.c pqclean_ntruhps2048677_clean/crypto_sort.c pqclean_ntruhps2048677_clean/packq.c pqclean_ntruhps2048677_clean/owcpa.c pqclean_ntruhps2048677_clean/sample.c pqclean_ntruhps2048677_clean/poly.c)
set(SRCS_NTRU_HPS2048677_CLEAN_SRCS pqclean_ntruhps2048677_clean/crypto_sort.c pqclean_ntruhps2048677_clean/kem.c pqclean_ntruhps2048677_clean/owcpa.c pqclean_ntruhps2048677_clean/pack3.c pqclean_ntruhps2048677_clean/packq.c pqclean_ntruhps2048677_clean/poly.c pqclean_ntruhps2048677_clean/sample.c pqclean_ntruhps2048677_clean/verify.c)
set(SRCS_NTRU_HPS2048677_CLEAN_SRCS ${SRCS_NTRU_HPS2048677_CLEAN_SRCS} kem_ntru_hps2048677.c )
@ -21,7 +21,7 @@ endif()
if(OQS_ENABLE_KEM_ntru_hps4096821)
set(SRCS_NTRU_HPS4096821_CLEAN_SRCS pqclean_ntruhps4096821_clean/kem.c pqclean_ntruhps4096821_clean/verify.c pqclean_ntruhps4096821_clean/pack3.c pqclean_ntruhps4096821_clean/crypto_sort.c pqclean_ntruhps4096821_clean/packq.c pqclean_ntruhps4096821_clean/owcpa.c pqclean_ntruhps4096821_clean/sample.c pqclean_ntruhps4096821_clean/poly.c)
set(SRCS_NTRU_HPS4096821_CLEAN_SRCS pqclean_ntruhps4096821_clean/crypto_sort.c pqclean_ntruhps4096821_clean/kem.c pqclean_ntruhps4096821_clean/owcpa.c pqclean_ntruhps4096821_clean/pack3.c pqclean_ntruhps4096821_clean/packq.c pqclean_ntruhps4096821_clean/poly.c pqclean_ntruhps4096821_clean/sample.c pqclean_ntruhps4096821_clean/verify.c)
set(SRCS_NTRU_HPS4096821_CLEAN_SRCS ${SRCS_NTRU_HPS4096821_CLEAN_SRCS} kem_ntru_hps4096821.c )
@ -30,7 +30,7 @@ endif()
if(OQS_ENABLE_KEM_ntru_hrss701)
set(SRCS_NTRU_HRSS701_CLEAN_SRCS pqclean_ntruhrss701_clean/kem.c pqclean_ntruhrss701_clean/verify.c pqclean_ntruhrss701_clean/pack3.c pqclean_ntruhrss701_clean/packq.c pqclean_ntruhrss701_clean/owcpa.c pqclean_ntruhrss701_clean/sample.c pqclean_ntruhrss701_clean/poly.c)
set(SRCS_NTRU_HRSS701_CLEAN_SRCS pqclean_ntruhrss701_clean/kem.c pqclean_ntruhrss701_clean/owcpa.c pqclean_ntruhrss701_clean/pack3.c pqclean_ntruhrss701_clean/packq.c pqclean_ntruhrss701_clean/poly.c pqclean_ntruhrss701_clean/sample.c pqclean_ntruhrss701_clean/verify.c)
set(SRCS_NTRU_HRSS701_CLEAN_SRCS ${SRCS_NTRU_HRSS701_CLEAN_SRCS} kem_ntru_hrss701.c )

View File

@ -3,7 +3,7 @@
if(OQS_ENABLE_KEM_saber_lightsaber)
set(SRCS_SABER_LIGHTSABER_CLEAN_SRCS pqclean_lightsaber_clean/kem.c pqclean_lightsaber_clean/verify.c pqclean_lightsaber_clean/poly.c pqclean_lightsaber_clean/SABER_indcpa.c pqclean_lightsaber_clean/pack_unpack.c pqclean_lightsaber_clean/cbd.c pqclean_lightsaber_clean/poly_mul.c)
set(SRCS_SABER_LIGHTSABER_CLEAN_SRCS pqclean_lightsaber_clean/cbd.c pqclean_lightsaber_clean/kem.c pqclean_lightsaber_clean/pack_unpack.c pqclean_lightsaber_clean/poly.c pqclean_lightsaber_clean/poly_mul.c pqclean_lightsaber_clean/SABER_indcpa.c pqclean_lightsaber_clean/verify.c)
set(SRCS_SABER_LIGHTSABER_CLEAN_SRCS ${SRCS_SABER_LIGHTSABER_CLEAN_SRCS} kem_saber_lightsaber.c )
@ -12,7 +12,7 @@ endif()
if(OQS_ENABLE_KEM_saber_saber)
set(SRCS_SABER_SABER_CLEAN_SRCS pqclean_saber_clean/kem.c pqclean_saber_clean/verify.c pqclean_saber_clean/poly.c pqclean_saber_clean/SABER_indcpa.c pqclean_saber_clean/pack_unpack.c pqclean_saber_clean/cbd.c pqclean_saber_clean/poly_mul.c)
set(SRCS_SABER_SABER_CLEAN_SRCS pqclean_saber_clean/cbd.c pqclean_saber_clean/kem.c pqclean_saber_clean/pack_unpack.c pqclean_saber_clean/poly.c pqclean_saber_clean/poly_mul.c pqclean_saber_clean/SABER_indcpa.c pqclean_saber_clean/verify.c)
set(SRCS_SABER_SABER_CLEAN_SRCS ${SRCS_SABER_SABER_CLEAN_SRCS} kem_saber_saber.c )
@ -21,7 +21,7 @@ endif()
if(OQS_ENABLE_KEM_saber_firesaber)
set(SRCS_SABER_FIRESABER_CLEAN_SRCS pqclean_firesaber_clean/kem.c pqclean_firesaber_clean/verify.c pqclean_firesaber_clean/poly.c pqclean_firesaber_clean/SABER_indcpa.c pqclean_firesaber_clean/pack_unpack.c pqclean_firesaber_clean/cbd.c pqclean_firesaber_clean/poly_mul.c)
set(SRCS_SABER_FIRESABER_CLEAN_SRCS pqclean_firesaber_clean/cbd.c pqclean_firesaber_clean/kem.c pqclean_firesaber_clean/pack_unpack.c pqclean_firesaber_clean/poly.c pqclean_firesaber_clean/poly_mul.c pqclean_firesaber_clean/SABER_indcpa.c pqclean_firesaber_clean/verify.c)
set(SRCS_SABER_FIRESABER_CLEAN_SRCS ${SRCS_SABER_FIRESABER_CLEAN_SRCS} kem_saber_firesaber.c )

View File

@ -3,7 +3,7 @@
if(OQS_ENABLE_KEM_threebears_babybear)
set(SRCS_THREEBEARS_BABYBEAR_CLEAN_SRCS pqclean_babybear_clean/threebears.c pqclean_babybear_clean/kem.c pqclean_babybear_clean/ring.c pqclean_babybear_clean/melas_fec.c)
set(SRCS_THREEBEARS_BABYBEAR_CLEAN_SRCS pqclean_babybear_clean/kem.c pqclean_babybear_clean/melas_fec.c pqclean_babybear_clean/ring.c pqclean_babybear_clean/threebears.c)
set(SRCS_THREEBEARS_BABYBEAR_CLEAN_SRCS ${SRCS_THREEBEARS_BABYBEAR_CLEAN_SRCS} kem_threebears_babybear.c )
@ -12,7 +12,7 @@ endif()
if(OQS_ENABLE_KEM_threebears_babybear_ephem)
set(SRCS_THREEBEARS_BABYBEAR_EPHEM_CLEAN_SRCS pqclean_babybear_ephem_clean/threebears.c pqclean_babybear_ephem_clean/kem.c pqclean_babybear_ephem_clean/ring.c pqclean_babybear_ephem_clean/melas_fec.c)
set(SRCS_THREEBEARS_BABYBEAR_EPHEM_CLEAN_SRCS pqclean_babybear_ephem_clean/kem.c pqclean_babybear_ephem_clean/melas_fec.c pqclean_babybear_ephem_clean/ring.c pqclean_babybear_ephem_clean/threebears.c)
set(SRCS_THREEBEARS_BABYBEAR_EPHEM_CLEAN_SRCS ${SRCS_THREEBEARS_BABYBEAR_EPHEM_CLEAN_SRCS} kem_threebears_babybear_ephem.c )
@ -21,7 +21,7 @@ endif()
if(OQS_ENABLE_KEM_threebears_mamabear)
set(SRCS_THREEBEARS_MAMABEAR_CLEAN_SRCS pqclean_mamabear_clean/threebears.c pqclean_mamabear_clean/kem.c pqclean_mamabear_clean/ring.c pqclean_mamabear_clean/melas_fec.c)
set(SRCS_THREEBEARS_MAMABEAR_CLEAN_SRCS pqclean_mamabear_clean/kem.c pqclean_mamabear_clean/melas_fec.c pqclean_mamabear_clean/ring.c pqclean_mamabear_clean/threebears.c)
set(SRCS_THREEBEARS_MAMABEAR_CLEAN_SRCS ${SRCS_THREEBEARS_MAMABEAR_CLEAN_SRCS} kem_threebears_mamabear.c )
@ -30,7 +30,7 @@ endif()
if(OQS_ENABLE_KEM_threebears_mamabear_ephem)
set(SRCS_THREEBEARS_MAMABEAR_EPHEM_CLEAN_SRCS pqclean_mamabear_ephem_clean/threebears.c pqclean_mamabear_ephem_clean/kem.c pqclean_mamabear_ephem_clean/ring.c pqclean_mamabear_ephem_clean/melas_fec.c)
set(SRCS_THREEBEARS_MAMABEAR_EPHEM_CLEAN_SRCS pqclean_mamabear_ephem_clean/kem.c pqclean_mamabear_ephem_clean/melas_fec.c pqclean_mamabear_ephem_clean/ring.c pqclean_mamabear_ephem_clean/threebears.c)
set(SRCS_THREEBEARS_MAMABEAR_EPHEM_CLEAN_SRCS ${SRCS_THREEBEARS_MAMABEAR_EPHEM_CLEAN_SRCS} kem_threebears_mamabear_ephem.c )
@ -39,7 +39,7 @@ endif()
if(OQS_ENABLE_KEM_threebears_papabear)
set(SRCS_THREEBEARS_PAPABEAR_CLEAN_SRCS pqclean_papabear_clean/threebears.c pqclean_papabear_clean/kem.c pqclean_papabear_clean/ring.c pqclean_papabear_clean/melas_fec.c)
set(SRCS_THREEBEARS_PAPABEAR_CLEAN_SRCS pqclean_papabear_clean/kem.c pqclean_papabear_clean/melas_fec.c pqclean_papabear_clean/ring.c pqclean_papabear_clean/threebears.c)
set(SRCS_THREEBEARS_PAPABEAR_CLEAN_SRCS ${SRCS_THREEBEARS_PAPABEAR_CLEAN_SRCS} kem_threebears_papabear.c )
@ -48,7 +48,7 @@ endif()
if(OQS_ENABLE_KEM_threebears_papabear_ephem)
set(SRCS_THREEBEARS_PAPABEAR_EPHEM_CLEAN_SRCS pqclean_papabear_ephem_clean/threebears.c pqclean_papabear_ephem_clean/kem.c pqclean_papabear_ephem_clean/ring.c pqclean_papabear_ephem_clean/melas_fec.c)
set(SRCS_THREEBEARS_PAPABEAR_EPHEM_CLEAN_SRCS pqclean_papabear_ephem_clean/kem.c pqclean_papabear_ephem_clean/melas_fec.c pqclean_papabear_ephem_clean/ring.c pqclean_papabear_ephem_clean/threebears.c)
set(SRCS_THREEBEARS_PAPABEAR_EPHEM_CLEAN_SRCS ${SRCS_THREEBEARS_PAPABEAR_EPHEM_CLEAN_SRCS} kem_threebears_papabear_ephem.c )

View File

@ -3,10 +3,10 @@
if(OQS_ENABLE_SIG_dilithium_2)
set(SRCS_DILITHIUM_2_CLEAN_SRCS pqclean_dilithium2_clean/stream.c pqclean_dilithium2_clean/packing.c pqclean_dilithium2_clean/sign.c pqclean_dilithium2_clean/poly.c pqclean_dilithium2_clean/rounding.c pqclean_dilithium2_clean/ntt.c pqclean_dilithium2_clean/reduce.c pqclean_dilithium2_clean/polyvec.c)
set(SRCS_DILITHIUM_2_CLEAN_SRCS pqclean_dilithium2_clean/ntt.c pqclean_dilithium2_clean/packing.c pqclean_dilithium2_clean/poly.c pqclean_dilithium2_clean/polyvec.c pqclean_dilithium2_clean/reduce.c pqclean_dilithium2_clean/rounding.c pqclean_dilithium2_clean/sign.c pqclean_dilithium2_clean/stream.c)
if(OQS_ENABLE_SIG_dilithium_2_avx2)
set(SRCS_DILITHIUM_2_AVX2_SRCS pqclean_dilithium2_avx2/stream.c pqclean_dilithium2_avx2/packing.c pqclean_dilithium2_avx2/pointwise.S pqclean_dilithium2_avx2/invntt.S pqclean_dilithium2_avx2/sign.c pqclean_dilithium2_avx2/rejsample.c pqclean_dilithium2_avx2/reduce.S pqclean_dilithium2_avx2/poly.c pqclean_dilithium2_avx2/ntt.S pqclean_dilithium2_avx2/nttconsts.c pqclean_dilithium2_avx2/rounding.c pqclean_dilithium2_avx2/fips202x4.c pqclean_dilithium2_avx2/polyvec.c)
set(SRCS_DILITHIUM_2_AVX2_SRCS pqclean_dilithium2_avx2/fips202x4.c pqclean_dilithium2_avx2/invntt.S pqclean_dilithium2_avx2/ntt.S pqclean_dilithium2_avx2/nttconsts.c pqclean_dilithium2_avx2/packing.c pqclean_dilithium2_avx2/pointwise.S pqclean_dilithium2_avx2/poly.c pqclean_dilithium2_avx2/polyvec.c pqclean_dilithium2_avx2/reduce.S pqclean_dilithium2_avx2/rejsample.c pqclean_dilithium2_avx2/rounding.c pqclean_dilithium2_avx2/sign.c pqclean_dilithium2_avx2/stream.c)
else()
set(SRCS_DILITHIUM_2_AVX2_SRCS pqclean_dilithium2_avx2/oqs_unsupported.c )
endif()
@ -17,10 +17,10 @@ endif()
if(OQS_ENABLE_SIG_dilithium_3)
set(SRCS_DILITHIUM_3_CLEAN_SRCS pqclean_dilithium3_clean/stream.c pqclean_dilithium3_clean/packing.c pqclean_dilithium3_clean/sign.c pqclean_dilithium3_clean/poly.c pqclean_dilithium3_clean/rounding.c pqclean_dilithium3_clean/ntt.c pqclean_dilithium3_clean/reduce.c pqclean_dilithium3_clean/polyvec.c)
set(SRCS_DILITHIUM_3_CLEAN_SRCS pqclean_dilithium3_clean/ntt.c pqclean_dilithium3_clean/packing.c pqclean_dilithium3_clean/poly.c pqclean_dilithium3_clean/polyvec.c pqclean_dilithium3_clean/reduce.c pqclean_dilithium3_clean/rounding.c pqclean_dilithium3_clean/sign.c pqclean_dilithium3_clean/stream.c)
if(OQS_ENABLE_SIG_dilithium_3_avx2)
set(SRCS_DILITHIUM_3_AVX2_SRCS pqclean_dilithium3_avx2/stream.c pqclean_dilithium3_avx2/packing.c pqclean_dilithium3_avx2/pointwise.S pqclean_dilithium3_avx2/invntt.S pqclean_dilithium3_avx2/sign.c pqclean_dilithium3_avx2/rejsample.c pqclean_dilithium3_avx2/reduce.S pqclean_dilithium3_avx2/poly.c pqclean_dilithium3_avx2/ntt.S pqclean_dilithium3_avx2/nttconsts.c pqclean_dilithium3_avx2/rounding.c pqclean_dilithium3_avx2/fips202x4.c pqclean_dilithium3_avx2/polyvec.c)
set(SRCS_DILITHIUM_3_AVX2_SRCS pqclean_dilithium3_avx2/fips202x4.c pqclean_dilithium3_avx2/invntt.S pqclean_dilithium3_avx2/ntt.S pqclean_dilithium3_avx2/nttconsts.c pqclean_dilithium3_avx2/packing.c pqclean_dilithium3_avx2/pointwise.S pqclean_dilithium3_avx2/poly.c pqclean_dilithium3_avx2/polyvec.c pqclean_dilithium3_avx2/reduce.S pqclean_dilithium3_avx2/rejsample.c pqclean_dilithium3_avx2/rounding.c pqclean_dilithium3_avx2/sign.c pqclean_dilithium3_avx2/stream.c)
else()
set(SRCS_DILITHIUM_3_AVX2_SRCS pqclean_dilithium3_avx2/oqs_unsupported.c )
endif()
@ -31,10 +31,10 @@ endif()
if(OQS_ENABLE_SIG_dilithium_4)
set(SRCS_DILITHIUM_4_CLEAN_SRCS pqclean_dilithium4_clean/stream.c pqclean_dilithium4_clean/packing.c pqclean_dilithium4_clean/sign.c pqclean_dilithium4_clean/poly.c pqclean_dilithium4_clean/rounding.c pqclean_dilithium4_clean/ntt.c pqclean_dilithium4_clean/reduce.c pqclean_dilithium4_clean/polyvec.c)
set(SRCS_DILITHIUM_4_CLEAN_SRCS pqclean_dilithium4_clean/ntt.c pqclean_dilithium4_clean/packing.c pqclean_dilithium4_clean/poly.c pqclean_dilithium4_clean/polyvec.c pqclean_dilithium4_clean/reduce.c pqclean_dilithium4_clean/rounding.c pqclean_dilithium4_clean/sign.c pqclean_dilithium4_clean/stream.c)
if(OQS_ENABLE_SIG_dilithium_4_avx2)
set(SRCS_DILITHIUM_4_AVX2_SRCS pqclean_dilithium4_avx2/stream.c pqclean_dilithium4_avx2/packing.c pqclean_dilithium4_avx2/pointwise.S pqclean_dilithium4_avx2/invntt.S pqclean_dilithium4_avx2/sign.c pqclean_dilithium4_avx2/rejsample.c pqclean_dilithium4_avx2/reduce.S pqclean_dilithium4_avx2/poly.c pqclean_dilithium4_avx2/ntt.S pqclean_dilithium4_avx2/nttconsts.c pqclean_dilithium4_avx2/rounding.c pqclean_dilithium4_avx2/fips202x4.c pqclean_dilithium4_avx2/polyvec.c)
set(SRCS_DILITHIUM_4_AVX2_SRCS pqclean_dilithium4_avx2/fips202x4.c pqclean_dilithium4_avx2/invntt.S pqclean_dilithium4_avx2/ntt.S pqclean_dilithium4_avx2/nttconsts.c pqclean_dilithium4_avx2/packing.c pqclean_dilithium4_avx2/pointwise.S pqclean_dilithium4_avx2/poly.c pqclean_dilithium4_avx2/polyvec.c pqclean_dilithium4_avx2/reduce.S pqclean_dilithium4_avx2/rejsample.c pqclean_dilithium4_avx2/rounding.c pqclean_dilithium4_avx2/sign.c pqclean_dilithium4_avx2/stream.c)
else()
set(SRCS_DILITHIUM_4_AVX2_SRCS pqclean_dilithium4_avx2/oqs_unsupported.c )
endif()

View File

@ -3,7 +3,7 @@
if(OQS_ENABLE_SIG_falcon_512)
set(SRCS_FALCON_512_CLEAN_SRCS pqclean_falcon_512_clean/keygen.c pqclean_falcon_512_clean/fpr.c pqclean_falcon_512_clean/sign.c pqclean_falcon_512_clean/vrfy.c pqclean_falcon_512_clean/rng.c pqclean_falcon_512_clean/pqclean.c pqclean_falcon_512_clean/fft.c pqclean_falcon_512_clean/common.c pqclean_falcon_512_clean/codec.c)
set(SRCS_FALCON_512_CLEAN_SRCS pqclean_falcon_512_clean/codec.c pqclean_falcon_512_clean/common.c pqclean_falcon_512_clean/fft.c pqclean_falcon_512_clean/fpr.c pqclean_falcon_512_clean/keygen.c pqclean_falcon_512_clean/pqclean.c pqclean_falcon_512_clean/rng.c pqclean_falcon_512_clean/sign.c pqclean_falcon_512_clean/vrfy.c)
set(SRCS_FALCON_512_CLEAN_SRCS ${SRCS_FALCON_512_CLEAN_SRCS} sig_falcon_512.c )
@ -12,7 +12,7 @@ endif()
if(OQS_ENABLE_SIG_falcon_1024)
set(SRCS_FALCON_1024_CLEAN_SRCS pqclean_falcon_1024_clean/keygen.c pqclean_falcon_1024_clean/fpr.c pqclean_falcon_1024_clean/sign.c pqclean_falcon_1024_clean/vrfy.c pqclean_falcon_1024_clean/rng.c pqclean_falcon_1024_clean/pqclean.c pqclean_falcon_1024_clean/fft.c pqclean_falcon_1024_clean/common.c pqclean_falcon_1024_clean/codec.c)
set(SRCS_FALCON_1024_CLEAN_SRCS pqclean_falcon_1024_clean/codec.c pqclean_falcon_1024_clean/common.c pqclean_falcon_1024_clean/fft.c pqclean_falcon_1024_clean/fpr.c pqclean_falcon_1024_clean/keygen.c pqclean_falcon_1024_clean/pqclean.c pqclean_falcon_1024_clean/rng.c pqclean_falcon_1024_clean/sign.c pqclean_falcon_1024_clean/vrfy.c)
set(SRCS_FALCON_1024_CLEAN_SRCS ${SRCS_FALCON_1024_CLEAN_SRCS} sig_falcon_1024.c )

View File

@ -3,7 +3,7 @@
if(OQS_ENABLE_SIG_mqdss_31_48)
set(SRCS_MQDSS_31_48_CLEAN_SRCS pqclean_mqdss_48_clean/mq.c pqclean_mqdss_48_clean/gf31.c pqclean_mqdss_48_clean/sign.c)
set(SRCS_MQDSS_31_48_CLEAN_SRCS pqclean_mqdss_48_clean/gf31.c pqclean_mqdss_48_clean/mq.c pqclean_mqdss_48_clean/sign.c)
set(SRCS_MQDSS_31_48_CLEAN_SRCS ${SRCS_MQDSS_31_48_CLEAN_SRCS} sig_mqdss_31_48.c )
@ -12,7 +12,7 @@ endif()
if(OQS_ENABLE_SIG_mqdss_31_64)
set(SRCS_MQDSS_31_64_CLEAN_SRCS pqclean_mqdss_64_clean/mq.c pqclean_mqdss_64_clean/gf31.c pqclean_mqdss_64_clean/sign.c)
set(SRCS_MQDSS_31_64_CLEAN_SRCS pqclean_mqdss_64_clean/gf31.c pqclean_mqdss_64_clean/mq.c pqclean_mqdss_64_clean/sign.c)
set(SRCS_MQDSS_31_64_CLEAN_SRCS ${SRCS_MQDSS_31_64_CLEAN_SRCS} sig_mqdss_31_64.c )

View File

@ -3,7 +3,7 @@
if(OQS_ENABLE_SIG_rainbow_Ia_classic)
set(SRCS_RAINBOW_IA_CLASSIC_CLEAN_SRCS pqclean_rainbowIa_classic_clean/blas_comm.c pqclean_rainbowIa_classic_clean/parallel_matrix_op.c pqclean_rainbowIa_classic_clean/rainbow_keypair_computation.c pqclean_rainbowIa_classic_clean/utils_prng.c pqclean_rainbowIa_classic_clean/gf.c pqclean_rainbowIa_classic_clean/sign.c pqclean_rainbowIa_classic_clean/utils_hash.c pqclean_rainbowIa_classic_clean/rainbow.c pqclean_rainbowIa_classic_clean/rainbow_keypair.c pqclean_rainbowIa_classic_clean/blas.c)
set(SRCS_RAINBOW_IA_CLASSIC_CLEAN_SRCS pqclean_rainbowIa_classic_clean/blas.c pqclean_rainbowIa_classic_clean/blas_comm.c pqclean_rainbowIa_classic_clean/gf.c pqclean_rainbowIa_classic_clean/parallel_matrix_op.c pqclean_rainbowIa_classic_clean/rainbow.c pqclean_rainbowIa_classic_clean/rainbow_keypair.c pqclean_rainbowIa_classic_clean/rainbow_keypair_computation.c pqclean_rainbowIa_classic_clean/sign.c pqclean_rainbowIa_classic_clean/utils_hash.c pqclean_rainbowIa_classic_clean/utils_prng.c)
set(SRCS_RAINBOW_IA_CLASSIC_CLEAN_SRCS ${SRCS_RAINBOW_IA_CLASSIC_CLEAN_SRCS} sig_rainbow_Ia_classic.c )
@ -12,7 +12,7 @@ endif()
if(OQS_ENABLE_SIG_rainbow_Ia_cyclic)
set(SRCS_RAINBOW_IA_CYCLIC_CLEAN_SRCS pqclean_rainbowIa_cyclic_clean/blas_comm.c pqclean_rainbowIa_cyclic_clean/parallel_matrix_op.c pqclean_rainbowIa_cyclic_clean/rainbow_keypair_computation.c pqclean_rainbowIa_cyclic_clean/utils_prng.c pqclean_rainbowIa_cyclic_clean/gf.c pqclean_rainbowIa_cyclic_clean/sign.c pqclean_rainbowIa_cyclic_clean/utils_hash.c pqclean_rainbowIa_cyclic_clean/rainbow.c pqclean_rainbowIa_cyclic_clean/rainbow_keypair.c pqclean_rainbowIa_cyclic_clean/blas.c)
set(SRCS_RAINBOW_IA_CYCLIC_CLEAN_SRCS pqclean_rainbowIa_cyclic_clean/blas.c pqclean_rainbowIa_cyclic_clean/blas_comm.c pqclean_rainbowIa_cyclic_clean/gf.c pqclean_rainbowIa_cyclic_clean/parallel_matrix_op.c pqclean_rainbowIa_cyclic_clean/rainbow.c pqclean_rainbowIa_cyclic_clean/rainbow_keypair.c pqclean_rainbowIa_cyclic_clean/rainbow_keypair_computation.c pqclean_rainbowIa_cyclic_clean/sign.c pqclean_rainbowIa_cyclic_clean/utils_hash.c pqclean_rainbowIa_cyclic_clean/utils_prng.c)
set(SRCS_RAINBOW_IA_CYCLIC_CLEAN_SRCS ${SRCS_RAINBOW_IA_CYCLIC_CLEAN_SRCS} sig_rainbow_Ia_cyclic.c )
@ -21,7 +21,7 @@ endif()
if(OQS_ENABLE_SIG_rainbow_Ia_cyclic_compressed)
set(SRCS_RAINBOW_IA_CYCLIC_COMPRESSED_CLEAN_SRCS pqclean_rainbowIa_cyclic_compressed_clean/blas_comm.c pqclean_rainbowIa_cyclic_compressed_clean/parallel_matrix_op.c pqclean_rainbowIa_cyclic_compressed_clean/rainbow_keypair_computation.c pqclean_rainbowIa_cyclic_compressed_clean/utils_prng.c pqclean_rainbowIa_cyclic_compressed_clean/gf.c pqclean_rainbowIa_cyclic_compressed_clean/sign.c pqclean_rainbowIa_cyclic_compressed_clean/utils_hash.c pqclean_rainbowIa_cyclic_compressed_clean/rainbow.c pqclean_rainbowIa_cyclic_compressed_clean/rainbow_keypair.c pqclean_rainbowIa_cyclic_compressed_clean/blas.c)
set(SRCS_RAINBOW_IA_CYCLIC_COMPRESSED_CLEAN_SRCS pqclean_rainbowIa_cyclic_compressed_clean/blas.c pqclean_rainbowIa_cyclic_compressed_clean/blas_comm.c pqclean_rainbowIa_cyclic_compressed_clean/gf.c pqclean_rainbowIa_cyclic_compressed_clean/parallel_matrix_op.c pqclean_rainbowIa_cyclic_compressed_clean/rainbow.c pqclean_rainbowIa_cyclic_compressed_clean/rainbow_keypair.c pqclean_rainbowIa_cyclic_compressed_clean/rainbow_keypair_computation.c pqclean_rainbowIa_cyclic_compressed_clean/sign.c pqclean_rainbowIa_cyclic_compressed_clean/utils_hash.c pqclean_rainbowIa_cyclic_compressed_clean/utils_prng.c)
set(SRCS_RAINBOW_IA_CYCLIC_COMPRESSED_CLEAN_SRCS ${SRCS_RAINBOW_IA_CYCLIC_COMPRESSED_CLEAN_SRCS} sig_rainbow_Ia_cyclic_compressed.c )
@ -30,7 +30,7 @@ endif()
if(OQS_ENABLE_SIG_rainbow_IIIc_classic)
set(SRCS_RAINBOW_IIIC_CLASSIC_CLEAN_SRCS pqclean_rainbowIIIc_classic_clean/blas_comm.c pqclean_rainbowIIIc_classic_clean/parallel_matrix_op.c pqclean_rainbowIIIc_classic_clean/rainbow_keypair_computation.c pqclean_rainbowIIIc_classic_clean/utils_prng.c pqclean_rainbowIIIc_classic_clean/gf.c pqclean_rainbowIIIc_classic_clean/sign.c pqclean_rainbowIIIc_classic_clean/utils_hash.c pqclean_rainbowIIIc_classic_clean/rainbow.c pqclean_rainbowIIIc_classic_clean/rainbow_keypair.c pqclean_rainbowIIIc_classic_clean/blas.c)
set(SRCS_RAINBOW_IIIC_CLASSIC_CLEAN_SRCS pqclean_rainbowIIIc_classic_clean/blas.c pqclean_rainbowIIIc_classic_clean/blas_comm.c pqclean_rainbowIIIc_classic_clean/gf.c pqclean_rainbowIIIc_classic_clean/parallel_matrix_op.c pqclean_rainbowIIIc_classic_clean/rainbow.c pqclean_rainbowIIIc_classic_clean/rainbow_keypair.c pqclean_rainbowIIIc_classic_clean/rainbow_keypair_computation.c pqclean_rainbowIIIc_classic_clean/sign.c pqclean_rainbowIIIc_classic_clean/utils_hash.c pqclean_rainbowIIIc_classic_clean/utils_prng.c)
set(SRCS_RAINBOW_IIIC_CLASSIC_CLEAN_SRCS ${SRCS_RAINBOW_IIIC_CLASSIC_CLEAN_SRCS} sig_rainbow_IIIc_classic.c )
@ -39,7 +39,7 @@ endif()
if(OQS_ENABLE_SIG_rainbow_IIIc_cyclic)
set(SRCS_RAINBOW_IIIC_CYCLIC_CLEAN_SRCS pqclean_rainbowIIIc_cyclic_clean/blas_comm.c pqclean_rainbowIIIc_cyclic_clean/parallel_matrix_op.c pqclean_rainbowIIIc_cyclic_clean/rainbow_keypair_computation.c pqclean_rainbowIIIc_cyclic_clean/utils_prng.c pqclean_rainbowIIIc_cyclic_clean/gf.c pqclean_rainbowIIIc_cyclic_clean/sign.c pqclean_rainbowIIIc_cyclic_clean/utils_hash.c pqclean_rainbowIIIc_cyclic_clean/rainbow.c pqclean_rainbowIIIc_cyclic_clean/rainbow_keypair.c pqclean_rainbowIIIc_cyclic_clean/blas.c)
set(SRCS_RAINBOW_IIIC_CYCLIC_CLEAN_SRCS pqclean_rainbowIIIc_cyclic_clean/blas.c pqclean_rainbowIIIc_cyclic_clean/blas_comm.c pqclean_rainbowIIIc_cyclic_clean/gf.c pqclean_rainbowIIIc_cyclic_clean/parallel_matrix_op.c pqclean_rainbowIIIc_cyclic_clean/rainbow.c pqclean_rainbowIIIc_cyclic_clean/rainbow_keypair.c pqclean_rainbowIIIc_cyclic_clean/rainbow_keypair_computation.c pqclean_rainbowIIIc_cyclic_clean/sign.c pqclean_rainbowIIIc_cyclic_clean/utils_hash.c pqclean_rainbowIIIc_cyclic_clean/utils_prng.c)
set(SRCS_RAINBOW_IIIC_CYCLIC_CLEAN_SRCS ${SRCS_RAINBOW_IIIC_CYCLIC_CLEAN_SRCS} sig_rainbow_IIIc_cyclic.c )
@ -48,7 +48,7 @@ endif()
if(OQS_ENABLE_SIG_rainbow_IIIc_cyclic_compressed)
set(SRCS_RAINBOW_IIIC_CYCLIC_COMPRESSED_CLEAN_SRCS pqclean_rainbowIIIc_cyclic_compressed_clean/blas_comm.c pqclean_rainbowIIIc_cyclic_compressed_clean/parallel_matrix_op.c pqclean_rainbowIIIc_cyclic_compressed_clean/rainbow_keypair_computation.c pqclean_rainbowIIIc_cyclic_compressed_clean/utils_prng.c pqclean_rainbowIIIc_cyclic_compressed_clean/gf.c pqclean_rainbowIIIc_cyclic_compressed_clean/sign.c pqclean_rainbowIIIc_cyclic_compressed_clean/utils_hash.c pqclean_rainbowIIIc_cyclic_compressed_clean/rainbow.c pqclean_rainbowIIIc_cyclic_compressed_clean/rainbow_keypair.c pqclean_rainbowIIIc_cyclic_compressed_clean/blas.c)
set(SRCS_RAINBOW_IIIC_CYCLIC_COMPRESSED_CLEAN_SRCS pqclean_rainbowIIIc_cyclic_compressed_clean/blas.c pqclean_rainbowIIIc_cyclic_compressed_clean/blas_comm.c pqclean_rainbowIIIc_cyclic_compressed_clean/gf.c pqclean_rainbowIIIc_cyclic_compressed_clean/parallel_matrix_op.c pqclean_rainbowIIIc_cyclic_compressed_clean/rainbow.c pqclean_rainbowIIIc_cyclic_compressed_clean/rainbow_keypair.c pqclean_rainbowIIIc_cyclic_compressed_clean/rainbow_keypair_computation.c pqclean_rainbowIIIc_cyclic_compressed_clean/sign.c pqclean_rainbowIIIc_cyclic_compressed_clean/utils_hash.c pqclean_rainbowIIIc_cyclic_compressed_clean/utils_prng.c)
set(SRCS_RAINBOW_IIIC_CYCLIC_COMPRESSED_CLEAN_SRCS ${SRCS_RAINBOW_IIIC_CYCLIC_COMPRESSED_CLEAN_SRCS} sig_rainbow_IIIc_cyclic_compressed.c )
@ -57,7 +57,7 @@ endif()
if(OQS_ENABLE_SIG_rainbow_Vc_classic)
set(SRCS_RAINBOW_VC_CLASSIC_CLEAN_SRCS pqclean_rainbowVc_classic_clean/blas_comm.c pqclean_rainbowVc_classic_clean/parallel_matrix_op.c pqclean_rainbowVc_classic_clean/rainbow_keypair_computation.c pqclean_rainbowVc_classic_clean/utils_prng.c pqclean_rainbowVc_classic_clean/gf.c pqclean_rainbowVc_classic_clean/sign.c pqclean_rainbowVc_classic_clean/utils_hash.c pqclean_rainbowVc_classic_clean/rainbow.c pqclean_rainbowVc_classic_clean/rainbow_keypair.c pqclean_rainbowVc_classic_clean/blas.c)
set(SRCS_RAINBOW_VC_CLASSIC_CLEAN_SRCS pqclean_rainbowVc_classic_clean/blas.c pqclean_rainbowVc_classic_clean/blas_comm.c pqclean_rainbowVc_classic_clean/gf.c pqclean_rainbowVc_classic_clean/parallel_matrix_op.c pqclean_rainbowVc_classic_clean/rainbow.c pqclean_rainbowVc_classic_clean/rainbow_keypair.c pqclean_rainbowVc_classic_clean/rainbow_keypair_computation.c pqclean_rainbowVc_classic_clean/sign.c pqclean_rainbowVc_classic_clean/utils_hash.c pqclean_rainbowVc_classic_clean/utils_prng.c)
set(SRCS_RAINBOW_VC_CLASSIC_CLEAN_SRCS ${SRCS_RAINBOW_VC_CLASSIC_CLEAN_SRCS} sig_rainbow_Vc_classic.c )
@ -66,7 +66,7 @@ endif()
if(OQS_ENABLE_SIG_rainbow_Vc_cyclic)
set(SRCS_RAINBOW_VC_CYCLIC_CLEAN_SRCS pqclean_rainbowVc_cyclic_clean/blas_comm.c pqclean_rainbowVc_cyclic_clean/parallel_matrix_op.c pqclean_rainbowVc_cyclic_clean/rainbow_keypair_computation.c pqclean_rainbowVc_cyclic_clean/utils_prng.c pqclean_rainbowVc_cyclic_clean/gf.c pqclean_rainbowVc_cyclic_clean/sign.c pqclean_rainbowVc_cyclic_clean/utils_hash.c pqclean_rainbowVc_cyclic_clean/rainbow.c pqclean_rainbowVc_cyclic_clean/rainbow_keypair.c pqclean_rainbowVc_cyclic_clean/blas.c)
set(SRCS_RAINBOW_VC_CYCLIC_CLEAN_SRCS pqclean_rainbowVc_cyclic_clean/blas.c pqclean_rainbowVc_cyclic_clean/blas_comm.c pqclean_rainbowVc_cyclic_clean/gf.c pqclean_rainbowVc_cyclic_clean/parallel_matrix_op.c pqclean_rainbowVc_cyclic_clean/rainbow.c pqclean_rainbowVc_cyclic_clean/rainbow_keypair.c pqclean_rainbowVc_cyclic_clean/rainbow_keypair_computation.c pqclean_rainbowVc_cyclic_clean/sign.c pqclean_rainbowVc_cyclic_clean/utils_hash.c pqclean_rainbowVc_cyclic_clean/utils_prng.c)
set(SRCS_RAINBOW_VC_CYCLIC_CLEAN_SRCS ${SRCS_RAINBOW_VC_CYCLIC_CLEAN_SRCS} sig_rainbow_Vc_cyclic.c )
@ -75,7 +75,7 @@ endif()
if(OQS_ENABLE_SIG_rainbow_Vc_cyclic_compressed)
set(SRCS_RAINBOW_VC_CYCLIC_COMPRESSED_CLEAN_SRCS pqclean_rainbowVc_cyclic_compressed_clean/blas_comm.c pqclean_rainbowVc_cyclic_compressed_clean/parallel_matrix_op.c pqclean_rainbowVc_cyclic_compressed_clean/rainbow_keypair_computation.c pqclean_rainbowVc_cyclic_compressed_clean/utils_prng.c pqclean_rainbowVc_cyclic_compressed_clean/gf.c pqclean_rainbowVc_cyclic_compressed_clean/sign.c pqclean_rainbowVc_cyclic_compressed_clean/utils_hash.c pqclean_rainbowVc_cyclic_compressed_clean/rainbow.c pqclean_rainbowVc_cyclic_compressed_clean/rainbow_keypair.c pqclean_rainbowVc_cyclic_compressed_clean/blas.c)
set(SRCS_RAINBOW_VC_CYCLIC_COMPRESSED_CLEAN_SRCS pqclean_rainbowVc_cyclic_compressed_clean/blas.c pqclean_rainbowVc_cyclic_compressed_clean/blas_comm.c pqclean_rainbowVc_cyclic_compressed_clean/gf.c pqclean_rainbowVc_cyclic_compressed_clean/parallel_matrix_op.c pqclean_rainbowVc_cyclic_compressed_clean/rainbow.c pqclean_rainbowVc_cyclic_compressed_clean/rainbow_keypair.c pqclean_rainbowVc_cyclic_compressed_clean/rainbow_keypair_computation.c pqclean_rainbowVc_cyclic_compressed_clean/sign.c pqclean_rainbowVc_cyclic_compressed_clean/utils_hash.c pqclean_rainbowVc_cyclic_compressed_clean/utils_prng.c)
set(SRCS_RAINBOW_VC_CYCLIC_COMPRESSED_CLEAN_SRCS ${SRCS_RAINBOW_VC_CYCLIC_COMPRESSED_CLEAN_SRCS} sig_rainbow_Vc_cyclic_compressed.c )

View File

@ -3,7 +3,7 @@
if(OQS_ENABLE_SIG_sphincs_haraka_128f_robust)
set(SRCS_SPHINCS_HARAKA_128F_ROBUST_CLEAN_SRCS pqclean_sphincs_haraka_128f_robust_clean/haraka.c pqclean_sphincs_haraka_128f_robust_clean/thash_haraka_robust.c pqclean_sphincs_haraka_128f_robust_clean/utils.c pqclean_sphincs_haraka_128f_robust_clean/sign.c pqclean_sphincs_haraka_128f_robust_clean/hash_haraka.c pqclean_sphincs_haraka_128f_robust_clean/wots.c pqclean_sphincs_haraka_128f_robust_clean/fors.c pqclean_sphincs_haraka_128f_robust_clean/address.c)
set(SRCS_SPHINCS_HARAKA_128F_ROBUST_CLEAN_SRCS pqclean_sphincs_haraka_128f_robust_clean/address.c pqclean_sphincs_haraka_128f_robust_clean/fors.c pqclean_sphincs_haraka_128f_robust_clean/haraka.c pqclean_sphincs_haraka_128f_robust_clean/hash_haraka.c pqclean_sphincs_haraka_128f_robust_clean/sign.c pqclean_sphincs_haraka_128f_robust_clean/thash_haraka_robust.c pqclean_sphincs_haraka_128f_robust_clean/utils.c pqclean_sphincs_haraka_128f_robust_clean/wots.c)
set(SRCS_SPHINCS_HARAKA_128F_ROBUST_CLEAN_SRCS ${SRCS_SPHINCS_HARAKA_128F_ROBUST_CLEAN_SRCS} sig_sphincs_haraka_128f_robust.c )
@ -12,7 +12,7 @@ endif()
if(OQS_ENABLE_SIG_sphincs_haraka_128f_simple)
set(SRCS_SPHINCS_HARAKA_128F_SIMPLE_CLEAN_SRCS pqclean_sphincs_haraka_128f_simple_clean/haraka.c pqclean_sphincs_haraka_128f_simple_clean/utils.c pqclean_sphincs_haraka_128f_simple_clean/thash_haraka_simple.c pqclean_sphincs_haraka_128f_simple_clean/sign.c pqclean_sphincs_haraka_128f_simple_clean/hash_haraka.c pqclean_sphincs_haraka_128f_simple_clean/wots.c pqclean_sphincs_haraka_128f_simple_clean/fors.c pqclean_sphincs_haraka_128f_simple_clean/address.c)
set(SRCS_SPHINCS_HARAKA_128F_SIMPLE_CLEAN_SRCS pqclean_sphincs_haraka_128f_simple_clean/address.c pqclean_sphincs_haraka_128f_simple_clean/fors.c pqclean_sphincs_haraka_128f_simple_clean/haraka.c pqclean_sphincs_haraka_128f_simple_clean/hash_haraka.c pqclean_sphincs_haraka_128f_simple_clean/sign.c pqclean_sphincs_haraka_128f_simple_clean/thash_haraka_simple.c pqclean_sphincs_haraka_128f_simple_clean/utils.c pqclean_sphincs_haraka_128f_simple_clean/wots.c)
set(SRCS_SPHINCS_HARAKA_128F_SIMPLE_CLEAN_SRCS ${SRCS_SPHINCS_HARAKA_128F_SIMPLE_CLEAN_SRCS} sig_sphincs_haraka_128f_simple.c )
@ -21,7 +21,7 @@ endif()
if(OQS_ENABLE_SIG_sphincs_haraka_128s_robust)
set(SRCS_SPHINCS_HARAKA_128S_ROBUST_CLEAN_SRCS pqclean_sphincs_haraka_128s_robust_clean/haraka.c pqclean_sphincs_haraka_128s_robust_clean/thash_haraka_robust.c pqclean_sphincs_haraka_128s_robust_clean/utils.c pqclean_sphincs_haraka_128s_robust_clean/sign.c pqclean_sphincs_haraka_128s_robust_clean/hash_haraka.c pqclean_sphincs_haraka_128s_robust_clean/wots.c pqclean_sphincs_haraka_128s_robust_clean/fors.c pqclean_sphincs_haraka_128s_robust_clean/address.c)
set(SRCS_SPHINCS_HARAKA_128S_ROBUST_CLEAN_SRCS pqclean_sphincs_haraka_128s_robust_clean/address.c pqclean_sphincs_haraka_128s_robust_clean/fors.c pqclean_sphincs_haraka_128s_robust_clean/haraka.c pqclean_sphincs_haraka_128s_robust_clean/hash_haraka.c pqclean_sphincs_haraka_128s_robust_clean/sign.c pqclean_sphincs_haraka_128s_robust_clean/thash_haraka_robust.c pqclean_sphincs_haraka_128s_robust_clean/utils.c pqclean_sphincs_haraka_128s_robust_clean/wots.c)
set(SRCS_SPHINCS_HARAKA_128S_ROBUST_CLEAN_SRCS ${SRCS_SPHINCS_HARAKA_128S_ROBUST_CLEAN_SRCS} sig_sphincs_haraka_128s_robust.c )
@ -30,7 +30,7 @@ endif()
if(OQS_ENABLE_SIG_sphincs_haraka_128s_simple)
set(SRCS_SPHINCS_HARAKA_128S_SIMPLE_CLEAN_SRCS pqclean_sphincs_haraka_128s_simple_clean/haraka.c pqclean_sphincs_haraka_128s_simple_clean/utils.c pqclean_sphincs_haraka_128s_simple_clean/thash_haraka_simple.c pqclean_sphincs_haraka_128s_simple_clean/sign.c pqclean_sphincs_haraka_128s_simple_clean/hash_haraka.c pqclean_sphincs_haraka_128s_simple_clean/wots.c pqclean_sphincs_haraka_128s_simple_clean/fors.c pqclean_sphincs_haraka_128s_simple_clean/address.c)
set(SRCS_SPHINCS_HARAKA_128S_SIMPLE_CLEAN_SRCS pqclean_sphincs_haraka_128s_simple_clean/address.c pqclean_sphincs_haraka_128s_simple_clean/fors.c pqclean_sphincs_haraka_128s_simple_clean/haraka.c pqclean_sphincs_haraka_128s_simple_clean/hash_haraka.c pqclean_sphincs_haraka_128s_simple_clean/sign.c pqclean_sphincs_haraka_128s_simple_clean/thash_haraka_simple.c pqclean_sphincs_haraka_128s_simple_clean/utils.c pqclean_sphincs_haraka_128s_simple_clean/wots.c)
set(SRCS_SPHINCS_HARAKA_128S_SIMPLE_CLEAN_SRCS ${SRCS_SPHINCS_HARAKA_128S_SIMPLE_CLEAN_SRCS} sig_sphincs_haraka_128s_simple.c )
@ -39,7 +39,7 @@ endif()
if(OQS_ENABLE_SIG_sphincs_haraka_192f_robust)
set(SRCS_SPHINCS_HARAKA_192F_ROBUST_CLEAN_SRCS pqclean_sphincs_haraka_192f_robust_clean/haraka.c pqclean_sphincs_haraka_192f_robust_clean/thash_haraka_robust.c pqclean_sphincs_haraka_192f_robust_clean/utils.c pqclean_sphincs_haraka_192f_robust_clean/sign.c pqclean_sphincs_haraka_192f_robust_clean/hash_haraka.c pqclean_sphincs_haraka_192f_robust_clean/wots.c pqclean_sphincs_haraka_192f_robust_clean/fors.c pqclean_sphincs_haraka_192f_robust_clean/address.c)
set(SRCS_SPHINCS_HARAKA_192F_ROBUST_CLEAN_SRCS pqclean_sphincs_haraka_192f_robust_clean/address.c pqclean_sphincs_haraka_192f_robust_clean/fors.c pqclean_sphincs_haraka_192f_robust_clean/haraka.c pqclean_sphincs_haraka_192f_robust_clean/hash_haraka.c pqclean_sphincs_haraka_192f_robust_clean/sign.c pqclean_sphincs_haraka_192f_robust_clean/thash_haraka_robust.c pqclean_sphincs_haraka_192f_robust_clean/utils.c pqclean_sphincs_haraka_192f_robust_clean/wots.c)
set(SRCS_SPHINCS_HARAKA_192F_ROBUST_CLEAN_SRCS ${SRCS_SPHINCS_HARAKA_192F_ROBUST_CLEAN_SRCS} sig_sphincs_haraka_192f_robust.c )
@ -48,7 +48,7 @@ endif()
if(OQS_ENABLE_SIG_sphincs_haraka_192f_simple)
set(SRCS_SPHINCS_HARAKA_192F_SIMPLE_CLEAN_SRCS pqclean_sphincs_haraka_192f_simple_clean/haraka.c pqclean_sphincs_haraka_192f_simple_clean/utils.c pqclean_sphincs_haraka_192f_simple_clean/thash_haraka_simple.c pqclean_sphincs_haraka_192f_simple_clean/sign.c pqclean_sphincs_haraka_192f_simple_clean/hash_haraka.c pqclean_sphincs_haraka_192f_simple_clean/wots.c pqclean_sphincs_haraka_192f_simple_clean/fors.c pqclean_sphincs_haraka_192f_simple_clean/address.c)
set(SRCS_SPHINCS_HARAKA_192F_SIMPLE_CLEAN_SRCS pqclean_sphincs_haraka_192f_simple_clean/address.c pqclean_sphincs_haraka_192f_simple_clean/fors.c pqclean_sphincs_haraka_192f_simple_clean/haraka.c pqclean_sphincs_haraka_192f_simple_clean/hash_haraka.c pqclean_sphincs_haraka_192f_simple_clean/sign.c pqclean_sphincs_haraka_192f_simple_clean/thash_haraka_simple.c pqclean_sphincs_haraka_192f_simple_clean/utils.c pqclean_sphincs_haraka_192f_simple_clean/wots.c)
set(SRCS_SPHINCS_HARAKA_192F_SIMPLE_CLEAN_SRCS ${SRCS_SPHINCS_HARAKA_192F_SIMPLE_CLEAN_SRCS} sig_sphincs_haraka_192f_simple.c )
@ -57,7 +57,7 @@ endif()
if(OQS_ENABLE_SIG_sphincs_haraka_192s_robust)
set(SRCS_SPHINCS_HARAKA_192S_ROBUST_CLEAN_SRCS pqclean_sphincs_haraka_192s_robust_clean/haraka.c pqclean_sphincs_haraka_192s_robust_clean/thash_haraka_robust.c pqclean_sphincs_haraka_192s_robust_clean/utils.c pqclean_sphincs_haraka_192s_robust_clean/sign.c pqclean_sphincs_haraka_192s_robust_clean/hash_haraka.c pqclean_sphincs_haraka_192s_robust_clean/wots.c pqclean_sphincs_haraka_192s_robust_clean/fors.c pqclean_sphincs_haraka_192s_robust_clean/address.c)
set(SRCS_SPHINCS_HARAKA_192S_ROBUST_CLEAN_SRCS pqclean_sphincs_haraka_192s_robust_clean/address.c pqclean_sphincs_haraka_192s_robust_clean/fors.c pqclean_sphincs_haraka_192s_robust_clean/haraka.c pqclean_sphincs_haraka_192s_robust_clean/hash_haraka.c pqclean_sphincs_haraka_192s_robust_clean/sign.c pqclean_sphincs_haraka_192s_robust_clean/thash_haraka_robust.c pqclean_sphincs_haraka_192s_robust_clean/utils.c pqclean_sphincs_haraka_192s_robust_clean/wots.c)
set(SRCS_SPHINCS_HARAKA_192S_ROBUST_CLEAN_SRCS ${SRCS_SPHINCS_HARAKA_192S_ROBUST_CLEAN_SRCS} sig_sphincs_haraka_192s_robust.c )
@ -66,7 +66,7 @@ endif()
if(OQS_ENABLE_SIG_sphincs_haraka_192s_simple)
set(SRCS_SPHINCS_HARAKA_192S_SIMPLE_CLEAN_SRCS pqclean_sphincs_haraka_192s_simple_clean/haraka.c pqclean_sphincs_haraka_192s_simple_clean/utils.c pqclean_sphincs_haraka_192s_simple_clean/thash_haraka_simple.c pqclean_sphincs_haraka_192s_simple_clean/sign.c pqclean_sphincs_haraka_192s_simple_clean/hash_haraka.c pqclean_sphincs_haraka_192s_simple_clean/wots.c pqclean_sphincs_haraka_192s_simple_clean/fors.c pqclean_sphincs_haraka_192s_simple_clean/address.c)
set(SRCS_SPHINCS_HARAKA_192S_SIMPLE_CLEAN_SRCS pqclean_sphincs_haraka_192s_simple_clean/address.c pqclean_sphincs_haraka_192s_simple_clean/fors.c pqclean_sphincs_haraka_192s_simple_clean/haraka.c pqclean_sphincs_haraka_192s_simple_clean/hash_haraka.c pqclean_sphincs_haraka_192s_simple_clean/sign.c pqclean_sphincs_haraka_192s_simple_clean/thash_haraka_simple.c pqclean_sphincs_haraka_192s_simple_clean/utils.c pqclean_sphincs_haraka_192s_simple_clean/wots.c)
set(SRCS_SPHINCS_HARAKA_192S_SIMPLE_CLEAN_SRCS ${SRCS_SPHINCS_HARAKA_192S_SIMPLE_CLEAN_SRCS} sig_sphincs_haraka_192s_simple.c )
@ -75,7 +75,7 @@ endif()
if(OQS_ENABLE_SIG_sphincs_haraka_256f_robust)
set(SRCS_SPHINCS_HARAKA_256F_ROBUST_CLEAN_SRCS pqclean_sphincs_haraka_256f_robust_clean/haraka.c pqclean_sphincs_haraka_256f_robust_clean/thash_haraka_robust.c pqclean_sphincs_haraka_256f_robust_clean/utils.c pqclean_sphincs_haraka_256f_robust_clean/sign.c pqclean_sphincs_haraka_256f_robust_clean/hash_haraka.c pqclean_sphincs_haraka_256f_robust_clean/wots.c pqclean_sphincs_haraka_256f_robust_clean/fors.c pqclean_sphincs_haraka_256f_robust_clean/address.c)
set(SRCS_SPHINCS_HARAKA_256F_ROBUST_CLEAN_SRCS pqclean_sphincs_haraka_256f_robust_clean/address.c pqclean_sphincs_haraka_256f_robust_clean/fors.c pqclean_sphincs_haraka_256f_robust_clean/haraka.c pqclean_sphincs_haraka_256f_robust_clean/hash_haraka.c pqclean_sphincs_haraka_256f_robust_clean/sign.c pqclean_sphincs_haraka_256f_robust_clean/thash_haraka_robust.c pqclean_sphincs_haraka_256f_robust_clean/utils.c pqclean_sphincs_haraka_256f_robust_clean/wots.c)
set(SRCS_SPHINCS_HARAKA_256F_ROBUST_CLEAN_SRCS ${SRCS_SPHINCS_HARAKA_256F_ROBUST_CLEAN_SRCS} sig_sphincs_haraka_256f_robust.c )
@ -84,7 +84,7 @@ endif()
if(OQS_ENABLE_SIG_sphincs_haraka_256f_simple)
set(SRCS_SPHINCS_HARAKA_256F_SIMPLE_CLEAN_SRCS pqclean_sphincs_haraka_256f_simple_clean/haraka.c pqclean_sphincs_haraka_256f_simple_clean/utils.c pqclean_sphincs_haraka_256f_simple_clean/thash_haraka_simple.c pqclean_sphincs_haraka_256f_simple_clean/sign.c pqclean_sphincs_haraka_256f_simple_clean/hash_haraka.c pqclean_sphincs_haraka_256f_simple_clean/wots.c pqclean_sphincs_haraka_256f_simple_clean/fors.c pqclean_sphincs_haraka_256f_simple_clean/address.c)
set(SRCS_SPHINCS_HARAKA_256F_SIMPLE_CLEAN_SRCS pqclean_sphincs_haraka_256f_simple_clean/address.c pqclean_sphincs_haraka_256f_simple_clean/fors.c pqclean_sphincs_haraka_256f_simple_clean/haraka.c pqclean_sphincs_haraka_256f_simple_clean/hash_haraka.c pqclean_sphincs_haraka_256f_simple_clean/sign.c pqclean_sphincs_haraka_256f_simple_clean/thash_haraka_simple.c pqclean_sphincs_haraka_256f_simple_clean/utils.c pqclean_sphincs_haraka_256f_simple_clean/wots.c)
set(SRCS_SPHINCS_HARAKA_256F_SIMPLE_CLEAN_SRCS ${SRCS_SPHINCS_HARAKA_256F_SIMPLE_CLEAN_SRCS} sig_sphincs_haraka_256f_simple.c )
@ -93,7 +93,7 @@ endif()
if(OQS_ENABLE_SIG_sphincs_haraka_256s_robust)
set(SRCS_SPHINCS_HARAKA_256S_ROBUST_CLEAN_SRCS pqclean_sphincs_haraka_256s_robust_clean/haraka.c pqclean_sphincs_haraka_256s_robust_clean/thash_haraka_robust.c pqclean_sphincs_haraka_256s_robust_clean/utils.c pqclean_sphincs_haraka_256s_robust_clean/sign.c pqclean_sphincs_haraka_256s_robust_clean/hash_haraka.c pqclean_sphincs_haraka_256s_robust_clean/wots.c pqclean_sphincs_haraka_256s_robust_clean/fors.c pqclean_sphincs_haraka_256s_robust_clean/address.c)
set(SRCS_SPHINCS_HARAKA_256S_ROBUST_CLEAN_SRCS pqclean_sphincs_haraka_256s_robust_clean/address.c pqclean_sphincs_haraka_256s_robust_clean/fors.c pqclean_sphincs_haraka_256s_robust_clean/haraka.c pqclean_sphincs_haraka_256s_robust_clean/hash_haraka.c pqclean_sphincs_haraka_256s_robust_clean/sign.c pqclean_sphincs_haraka_256s_robust_clean/thash_haraka_robust.c pqclean_sphincs_haraka_256s_robust_clean/utils.c pqclean_sphincs_haraka_256s_robust_clean/wots.c)
set(SRCS_SPHINCS_HARAKA_256S_ROBUST_CLEAN_SRCS ${SRCS_SPHINCS_HARAKA_256S_ROBUST_CLEAN_SRCS} sig_sphincs_haraka_256s_robust.c )
@ -102,7 +102,7 @@ endif()
if(OQS_ENABLE_SIG_sphincs_haraka_256s_simple)
set(SRCS_SPHINCS_HARAKA_256S_SIMPLE_CLEAN_SRCS pqclean_sphincs_haraka_256s_simple_clean/haraka.c pqclean_sphincs_haraka_256s_simple_clean/utils.c pqclean_sphincs_haraka_256s_simple_clean/thash_haraka_simple.c pqclean_sphincs_haraka_256s_simple_clean/sign.c pqclean_sphincs_haraka_256s_simple_clean/hash_haraka.c pqclean_sphincs_haraka_256s_simple_clean/wots.c pqclean_sphincs_haraka_256s_simple_clean/fors.c pqclean_sphincs_haraka_256s_simple_clean/address.c)
set(SRCS_SPHINCS_HARAKA_256S_SIMPLE_CLEAN_SRCS pqclean_sphincs_haraka_256s_simple_clean/address.c pqclean_sphincs_haraka_256s_simple_clean/fors.c pqclean_sphincs_haraka_256s_simple_clean/haraka.c pqclean_sphincs_haraka_256s_simple_clean/hash_haraka.c pqclean_sphincs_haraka_256s_simple_clean/sign.c pqclean_sphincs_haraka_256s_simple_clean/thash_haraka_simple.c pqclean_sphincs_haraka_256s_simple_clean/utils.c pqclean_sphincs_haraka_256s_simple_clean/wots.c)
set(SRCS_SPHINCS_HARAKA_256S_SIMPLE_CLEAN_SRCS ${SRCS_SPHINCS_HARAKA_256S_SIMPLE_CLEAN_SRCS} sig_sphincs_haraka_256s_simple.c )
@ -111,7 +111,7 @@ endif()
if(OQS_ENABLE_SIG_sphincs_sha256_128f_robust)
set(SRCS_SPHINCS_SHA256_128F_ROBUST_CLEAN_SRCS pqclean_sphincs_sha256_128f_robust_clean/utils.c pqclean_sphincs_sha256_128f_robust_clean/thash_sha256_robust.c pqclean_sphincs_sha256_128f_robust_clean/sign.c pqclean_sphincs_sha256_128f_robust_clean/hash_sha256.c pqclean_sphincs_sha256_128f_robust_clean/sha256.c pqclean_sphincs_sha256_128f_robust_clean/wots.c pqclean_sphincs_sha256_128f_robust_clean/fors.c pqclean_sphincs_sha256_128f_robust_clean/address.c)
set(SRCS_SPHINCS_SHA256_128F_ROBUST_CLEAN_SRCS pqclean_sphincs_sha256_128f_robust_clean/address.c pqclean_sphincs_sha256_128f_robust_clean/fors.c pqclean_sphincs_sha256_128f_robust_clean/hash_sha256.c pqclean_sphincs_sha256_128f_robust_clean/sha256.c pqclean_sphincs_sha256_128f_robust_clean/sign.c pqclean_sphincs_sha256_128f_robust_clean/thash_sha256_robust.c pqclean_sphincs_sha256_128f_robust_clean/utils.c pqclean_sphincs_sha256_128f_robust_clean/wots.c)
set(SRCS_SPHINCS_SHA256_128F_ROBUST_CLEAN_SRCS ${SRCS_SPHINCS_SHA256_128F_ROBUST_CLEAN_SRCS} sig_sphincs_sha256_128f_robust.c )
@ -120,7 +120,7 @@ endif()
if(OQS_ENABLE_SIG_sphincs_sha256_128f_simple)
set(SRCS_SPHINCS_SHA256_128F_SIMPLE_CLEAN_SRCS pqclean_sphincs_sha256_128f_simple_clean/utils.c pqclean_sphincs_sha256_128f_simple_clean/sign.c pqclean_sphincs_sha256_128f_simple_clean/hash_sha256.c pqclean_sphincs_sha256_128f_simple_clean/sha256.c pqclean_sphincs_sha256_128f_simple_clean/wots.c pqclean_sphincs_sha256_128f_simple_clean/fors.c pqclean_sphincs_sha256_128f_simple_clean/thash_sha256_simple.c pqclean_sphincs_sha256_128f_simple_clean/address.c)
set(SRCS_SPHINCS_SHA256_128F_SIMPLE_CLEAN_SRCS pqclean_sphincs_sha256_128f_simple_clean/address.c pqclean_sphincs_sha256_128f_simple_clean/fors.c pqclean_sphincs_sha256_128f_simple_clean/hash_sha256.c pqclean_sphincs_sha256_128f_simple_clean/sha256.c pqclean_sphincs_sha256_128f_simple_clean/sign.c pqclean_sphincs_sha256_128f_simple_clean/thash_sha256_simple.c pqclean_sphincs_sha256_128f_simple_clean/utils.c pqclean_sphincs_sha256_128f_simple_clean/wots.c)
set(SRCS_SPHINCS_SHA256_128F_SIMPLE_CLEAN_SRCS ${SRCS_SPHINCS_SHA256_128F_SIMPLE_CLEAN_SRCS} sig_sphincs_sha256_128f_simple.c )
@ -129,7 +129,7 @@ endif()
if(OQS_ENABLE_SIG_sphincs_sha256_128s_robust)
set(SRCS_SPHINCS_SHA256_128S_ROBUST_CLEAN_SRCS pqclean_sphincs_sha256_128s_robust_clean/utils.c pqclean_sphincs_sha256_128s_robust_clean/thash_sha256_robust.c pqclean_sphincs_sha256_128s_robust_clean/sign.c pqclean_sphincs_sha256_128s_robust_clean/hash_sha256.c pqclean_sphincs_sha256_128s_robust_clean/sha256.c pqclean_sphincs_sha256_128s_robust_clean/wots.c pqclean_sphincs_sha256_128s_robust_clean/fors.c pqclean_sphincs_sha256_128s_robust_clean/address.c)
set(SRCS_SPHINCS_SHA256_128S_ROBUST_CLEAN_SRCS pqclean_sphincs_sha256_128s_robust_clean/address.c pqclean_sphincs_sha256_128s_robust_clean/fors.c pqclean_sphincs_sha256_128s_robust_clean/hash_sha256.c pqclean_sphincs_sha256_128s_robust_clean/sha256.c pqclean_sphincs_sha256_128s_robust_clean/sign.c pqclean_sphincs_sha256_128s_robust_clean/thash_sha256_robust.c pqclean_sphincs_sha256_128s_robust_clean/utils.c pqclean_sphincs_sha256_128s_robust_clean/wots.c)
set(SRCS_SPHINCS_SHA256_128S_ROBUST_CLEAN_SRCS ${SRCS_SPHINCS_SHA256_128S_ROBUST_CLEAN_SRCS} sig_sphincs_sha256_128s_robust.c )
@ -138,7 +138,7 @@ endif()
if(OQS_ENABLE_SIG_sphincs_sha256_128s_simple)
set(SRCS_SPHINCS_SHA256_128S_SIMPLE_CLEAN_SRCS pqclean_sphincs_sha256_128s_simple_clean/utils.c pqclean_sphincs_sha256_128s_simple_clean/sign.c pqclean_sphincs_sha256_128s_simple_clean/hash_sha256.c pqclean_sphincs_sha256_128s_simple_clean/sha256.c pqclean_sphincs_sha256_128s_simple_clean/wots.c pqclean_sphincs_sha256_128s_simple_clean/fors.c pqclean_sphincs_sha256_128s_simple_clean/thash_sha256_simple.c pqclean_sphincs_sha256_128s_simple_clean/address.c)
set(SRCS_SPHINCS_SHA256_128S_SIMPLE_CLEAN_SRCS pqclean_sphincs_sha256_128s_simple_clean/address.c pqclean_sphincs_sha256_128s_simple_clean/fors.c pqclean_sphincs_sha256_128s_simple_clean/hash_sha256.c pqclean_sphincs_sha256_128s_simple_clean/sha256.c pqclean_sphincs_sha256_128s_simple_clean/sign.c pqclean_sphincs_sha256_128s_simple_clean/thash_sha256_simple.c pqclean_sphincs_sha256_128s_simple_clean/utils.c pqclean_sphincs_sha256_128s_simple_clean/wots.c)
set(SRCS_SPHINCS_SHA256_128S_SIMPLE_CLEAN_SRCS ${SRCS_SPHINCS_SHA256_128S_SIMPLE_CLEAN_SRCS} sig_sphincs_sha256_128s_simple.c )
@ -147,7 +147,7 @@ endif()
if(OQS_ENABLE_SIG_sphincs_sha256_192f_robust)
set(SRCS_SPHINCS_SHA256_192F_ROBUST_CLEAN_SRCS pqclean_sphincs_sha256_192f_robust_clean/utils.c pqclean_sphincs_sha256_192f_robust_clean/thash_sha256_robust.c pqclean_sphincs_sha256_192f_robust_clean/sign.c pqclean_sphincs_sha256_192f_robust_clean/hash_sha256.c pqclean_sphincs_sha256_192f_robust_clean/sha256.c pqclean_sphincs_sha256_192f_robust_clean/wots.c pqclean_sphincs_sha256_192f_robust_clean/fors.c pqclean_sphincs_sha256_192f_robust_clean/address.c)
set(SRCS_SPHINCS_SHA256_192F_ROBUST_CLEAN_SRCS pqclean_sphincs_sha256_192f_robust_clean/address.c pqclean_sphincs_sha256_192f_robust_clean/fors.c pqclean_sphincs_sha256_192f_robust_clean/hash_sha256.c pqclean_sphincs_sha256_192f_robust_clean/sha256.c pqclean_sphincs_sha256_192f_robust_clean/sign.c pqclean_sphincs_sha256_192f_robust_clean/thash_sha256_robust.c pqclean_sphincs_sha256_192f_robust_clean/utils.c pqclean_sphincs_sha256_192f_robust_clean/wots.c)
set(SRCS_SPHINCS_SHA256_192F_ROBUST_CLEAN_SRCS ${SRCS_SPHINCS_SHA256_192F_ROBUST_CLEAN_SRCS} sig_sphincs_sha256_192f_robust.c )
@ -156,7 +156,7 @@ endif()
if(OQS_ENABLE_SIG_sphincs_sha256_192f_simple)
set(SRCS_SPHINCS_SHA256_192F_SIMPLE_CLEAN_SRCS pqclean_sphincs_sha256_192f_simple_clean/utils.c pqclean_sphincs_sha256_192f_simple_clean/sign.c pqclean_sphincs_sha256_192f_simple_clean/hash_sha256.c pqclean_sphincs_sha256_192f_simple_clean/sha256.c pqclean_sphincs_sha256_192f_simple_clean/wots.c pqclean_sphincs_sha256_192f_simple_clean/fors.c pqclean_sphincs_sha256_192f_simple_clean/thash_sha256_simple.c pqclean_sphincs_sha256_192f_simple_clean/address.c)
set(SRCS_SPHINCS_SHA256_192F_SIMPLE_CLEAN_SRCS pqclean_sphincs_sha256_192f_simple_clean/address.c pqclean_sphincs_sha256_192f_simple_clean/fors.c pqclean_sphincs_sha256_192f_simple_clean/hash_sha256.c pqclean_sphincs_sha256_192f_simple_clean/sha256.c pqclean_sphincs_sha256_192f_simple_clean/sign.c pqclean_sphincs_sha256_192f_simple_clean/thash_sha256_simple.c pqclean_sphincs_sha256_192f_simple_clean/utils.c pqclean_sphincs_sha256_192f_simple_clean/wots.c)
set(SRCS_SPHINCS_SHA256_192F_SIMPLE_CLEAN_SRCS ${SRCS_SPHINCS_SHA256_192F_SIMPLE_CLEAN_SRCS} sig_sphincs_sha256_192f_simple.c )
@ -165,7 +165,7 @@ endif()
if(OQS_ENABLE_SIG_sphincs_sha256_192s_robust)
set(SRCS_SPHINCS_SHA256_192S_ROBUST_CLEAN_SRCS pqclean_sphincs_sha256_192s_robust_clean/utils.c pqclean_sphincs_sha256_192s_robust_clean/thash_sha256_robust.c pqclean_sphincs_sha256_192s_robust_clean/sign.c pqclean_sphincs_sha256_192s_robust_clean/hash_sha256.c pqclean_sphincs_sha256_192s_robust_clean/sha256.c pqclean_sphincs_sha256_192s_robust_clean/wots.c pqclean_sphincs_sha256_192s_robust_clean/fors.c pqclean_sphincs_sha256_192s_robust_clean/address.c)
set(SRCS_SPHINCS_SHA256_192S_ROBUST_CLEAN_SRCS pqclean_sphincs_sha256_192s_robust_clean/address.c pqclean_sphincs_sha256_192s_robust_clean/fors.c pqclean_sphincs_sha256_192s_robust_clean/hash_sha256.c pqclean_sphincs_sha256_192s_robust_clean/sha256.c pqclean_sphincs_sha256_192s_robust_clean/sign.c pqclean_sphincs_sha256_192s_robust_clean/thash_sha256_robust.c pqclean_sphincs_sha256_192s_robust_clean/utils.c pqclean_sphincs_sha256_192s_robust_clean/wots.c)
set(SRCS_SPHINCS_SHA256_192S_ROBUST_CLEAN_SRCS ${SRCS_SPHINCS_SHA256_192S_ROBUST_CLEAN_SRCS} sig_sphincs_sha256_192s_robust.c )
@ -174,7 +174,7 @@ endif()
if(OQS_ENABLE_SIG_sphincs_sha256_192s_simple)
set(SRCS_SPHINCS_SHA256_192S_SIMPLE_CLEAN_SRCS pqclean_sphincs_sha256_192s_simple_clean/utils.c pqclean_sphincs_sha256_192s_simple_clean/sign.c pqclean_sphincs_sha256_192s_simple_clean/hash_sha256.c pqclean_sphincs_sha256_192s_simple_clean/sha256.c pqclean_sphincs_sha256_192s_simple_clean/wots.c pqclean_sphincs_sha256_192s_simple_clean/fors.c pqclean_sphincs_sha256_192s_simple_clean/thash_sha256_simple.c pqclean_sphincs_sha256_192s_simple_clean/address.c)
set(SRCS_SPHINCS_SHA256_192S_SIMPLE_CLEAN_SRCS pqclean_sphincs_sha256_192s_simple_clean/address.c pqclean_sphincs_sha256_192s_simple_clean/fors.c pqclean_sphincs_sha256_192s_simple_clean/hash_sha256.c pqclean_sphincs_sha256_192s_simple_clean/sha256.c pqclean_sphincs_sha256_192s_simple_clean/sign.c pqclean_sphincs_sha256_192s_simple_clean/thash_sha256_simple.c pqclean_sphincs_sha256_192s_simple_clean/utils.c pqclean_sphincs_sha256_192s_simple_clean/wots.c)
set(SRCS_SPHINCS_SHA256_192S_SIMPLE_CLEAN_SRCS ${SRCS_SPHINCS_SHA256_192S_SIMPLE_CLEAN_SRCS} sig_sphincs_sha256_192s_simple.c )
@ -183,7 +183,7 @@ endif()
if(OQS_ENABLE_SIG_sphincs_sha256_256f_robust)
set(SRCS_SPHINCS_SHA256_256F_ROBUST_CLEAN_SRCS pqclean_sphincs_sha256_256f_robust_clean/utils.c pqclean_sphincs_sha256_256f_robust_clean/thash_sha256_robust.c pqclean_sphincs_sha256_256f_robust_clean/sign.c pqclean_sphincs_sha256_256f_robust_clean/hash_sha256.c pqclean_sphincs_sha256_256f_robust_clean/sha256.c pqclean_sphincs_sha256_256f_robust_clean/wots.c pqclean_sphincs_sha256_256f_robust_clean/fors.c pqclean_sphincs_sha256_256f_robust_clean/address.c)
set(SRCS_SPHINCS_SHA256_256F_ROBUST_CLEAN_SRCS pqclean_sphincs_sha256_256f_robust_clean/address.c pqclean_sphincs_sha256_256f_robust_clean/fors.c pqclean_sphincs_sha256_256f_robust_clean/hash_sha256.c pqclean_sphincs_sha256_256f_robust_clean/sha256.c pqclean_sphincs_sha256_256f_robust_clean/sign.c pqclean_sphincs_sha256_256f_robust_clean/thash_sha256_robust.c pqclean_sphincs_sha256_256f_robust_clean/utils.c pqclean_sphincs_sha256_256f_robust_clean/wots.c)
set(SRCS_SPHINCS_SHA256_256F_ROBUST_CLEAN_SRCS ${SRCS_SPHINCS_SHA256_256F_ROBUST_CLEAN_SRCS} sig_sphincs_sha256_256f_robust.c )
@ -192,7 +192,7 @@ endif()
if(OQS_ENABLE_SIG_sphincs_sha256_256f_simple)
set(SRCS_SPHINCS_SHA256_256F_SIMPLE_CLEAN_SRCS pqclean_sphincs_sha256_256f_simple_clean/utils.c pqclean_sphincs_sha256_256f_simple_clean/sign.c pqclean_sphincs_sha256_256f_simple_clean/hash_sha256.c pqclean_sphincs_sha256_256f_simple_clean/sha256.c pqclean_sphincs_sha256_256f_simple_clean/wots.c pqclean_sphincs_sha256_256f_simple_clean/fors.c pqclean_sphincs_sha256_256f_simple_clean/thash_sha256_simple.c pqclean_sphincs_sha256_256f_simple_clean/address.c)
set(SRCS_SPHINCS_SHA256_256F_SIMPLE_CLEAN_SRCS pqclean_sphincs_sha256_256f_simple_clean/address.c pqclean_sphincs_sha256_256f_simple_clean/fors.c pqclean_sphincs_sha256_256f_simple_clean/hash_sha256.c pqclean_sphincs_sha256_256f_simple_clean/sha256.c pqclean_sphincs_sha256_256f_simple_clean/sign.c pqclean_sphincs_sha256_256f_simple_clean/thash_sha256_simple.c pqclean_sphincs_sha256_256f_simple_clean/utils.c pqclean_sphincs_sha256_256f_simple_clean/wots.c)
set(SRCS_SPHINCS_SHA256_256F_SIMPLE_CLEAN_SRCS ${SRCS_SPHINCS_SHA256_256F_SIMPLE_CLEAN_SRCS} sig_sphincs_sha256_256f_simple.c )
@ -201,7 +201,7 @@ endif()
if(OQS_ENABLE_SIG_sphincs_sha256_256s_robust)
set(SRCS_SPHINCS_SHA256_256S_ROBUST_CLEAN_SRCS pqclean_sphincs_sha256_256s_robust_clean/utils.c pqclean_sphincs_sha256_256s_robust_clean/thash_sha256_robust.c pqclean_sphincs_sha256_256s_robust_clean/sign.c pqclean_sphincs_sha256_256s_robust_clean/hash_sha256.c pqclean_sphincs_sha256_256s_robust_clean/sha256.c pqclean_sphincs_sha256_256s_robust_clean/wots.c pqclean_sphincs_sha256_256s_robust_clean/fors.c pqclean_sphincs_sha256_256s_robust_clean/address.c)
set(SRCS_SPHINCS_SHA256_256S_ROBUST_CLEAN_SRCS pqclean_sphincs_sha256_256s_robust_clean/address.c pqclean_sphincs_sha256_256s_robust_clean/fors.c pqclean_sphincs_sha256_256s_robust_clean/hash_sha256.c pqclean_sphincs_sha256_256s_robust_clean/sha256.c pqclean_sphincs_sha256_256s_robust_clean/sign.c pqclean_sphincs_sha256_256s_robust_clean/thash_sha256_robust.c pqclean_sphincs_sha256_256s_robust_clean/utils.c pqclean_sphincs_sha256_256s_robust_clean/wots.c)
set(SRCS_SPHINCS_SHA256_256S_ROBUST_CLEAN_SRCS ${SRCS_SPHINCS_SHA256_256S_ROBUST_CLEAN_SRCS} sig_sphincs_sha256_256s_robust.c )
@ -210,7 +210,7 @@ endif()
if(OQS_ENABLE_SIG_sphincs_sha256_256s_simple)
set(SRCS_SPHINCS_SHA256_256S_SIMPLE_CLEAN_SRCS pqclean_sphincs_sha256_256s_simple_clean/utils.c pqclean_sphincs_sha256_256s_simple_clean/sign.c pqclean_sphincs_sha256_256s_simple_clean/hash_sha256.c pqclean_sphincs_sha256_256s_simple_clean/sha256.c pqclean_sphincs_sha256_256s_simple_clean/wots.c pqclean_sphincs_sha256_256s_simple_clean/fors.c pqclean_sphincs_sha256_256s_simple_clean/thash_sha256_simple.c pqclean_sphincs_sha256_256s_simple_clean/address.c)
set(SRCS_SPHINCS_SHA256_256S_SIMPLE_CLEAN_SRCS pqclean_sphincs_sha256_256s_simple_clean/address.c pqclean_sphincs_sha256_256s_simple_clean/fors.c pqclean_sphincs_sha256_256s_simple_clean/hash_sha256.c pqclean_sphincs_sha256_256s_simple_clean/sha256.c pqclean_sphincs_sha256_256s_simple_clean/sign.c pqclean_sphincs_sha256_256s_simple_clean/thash_sha256_simple.c pqclean_sphincs_sha256_256s_simple_clean/utils.c pqclean_sphincs_sha256_256s_simple_clean/wots.c)
set(SRCS_SPHINCS_SHA256_256S_SIMPLE_CLEAN_SRCS ${SRCS_SPHINCS_SHA256_256S_SIMPLE_CLEAN_SRCS} sig_sphincs_sha256_256s_simple.c )
@ -219,7 +219,7 @@ endif()
if(OQS_ENABLE_SIG_sphincs_shake256_128f_robust)
set(SRCS_SPHINCS_SHAKE256_128F_ROBUST_CLEAN_SRCS pqclean_sphincs_shake256_128f_robust_clean/hash_shake256.c pqclean_sphincs_shake256_128f_robust_clean/thash_shake256_robust.c pqclean_sphincs_shake256_128f_robust_clean/utils.c pqclean_sphincs_shake256_128f_robust_clean/sign.c pqclean_sphincs_shake256_128f_robust_clean/wots.c pqclean_sphincs_shake256_128f_robust_clean/fors.c pqclean_sphincs_shake256_128f_robust_clean/address.c)
set(SRCS_SPHINCS_SHAKE256_128F_ROBUST_CLEAN_SRCS pqclean_sphincs_shake256_128f_robust_clean/address.c pqclean_sphincs_shake256_128f_robust_clean/fors.c pqclean_sphincs_shake256_128f_robust_clean/hash_shake256.c pqclean_sphincs_shake256_128f_robust_clean/sign.c pqclean_sphincs_shake256_128f_robust_clean/thash_shake256_robust.c pqclean_sphincs_shake256_128f_robust_clean/utils.c pqclean_sphincs_shake256_128f_robust_clean/wots.c)
set(SRCS_SPHINCS_SHAKE256_128F_ROBUST_CLEAN_SRCS ${SRCS_SPHINCS_SHAKE256_128F_ROBUST_CLEAN_SRCS} sig_sphincs_shake256_128f_robust.c )
@ -228,7 +228,7 @@ endif()
if(OQS_ENABLE_SIG_sphincs_shake256_128f_simple)
set(SRCS_SPHINCS_SHAKE256_128F_SIMPLE_CLEAN_SRCS pqclean_sphincs_shake256_128f_simple_clean/hash_shake256.c pqclean_sphincs_shake256_128f_simple_clean/utils.c pqclean_sphincs_shake256_128f_simple_clean/sign.c pqclean_sphincs_shake256_128f_simple_clean/wots.c pqclean_sphincs_shake256_128f_simple_clean/fors.c pqclean_sphincs_shake256_128f_simple_clean/thash_shake256_simple.c pqclean_sphincs_shake256_128f_simple_clean/address.c)
set(SRCS_SPHINCS_SHAKE256_128F_SIMPLE_CLEAN_SRCS pqclean_sphincs_shake256_128f_simple_clean/address.c pqclean_sphincs_shake256_128f_simple_clean/fors.c pqclean_sphincs_shake256_128f_simple_clean/hash_shake256.c pqclean_sphincs_shake256_128f_simple_clean/sign.c pqclean_sphincs_shake256_128f_simple_clean/thash_shake256_simple.c pqclean_sphincs_shake256_128f_simple_clean/utils.c pqclean_sphincs_shake256_128f_simple_clean/wots.c)
set(SRCS_SPHINCS_SHAKE256_128F_SIMPLE_CLEAN_SRCS ${SRCS_SPHINCS_SHAKE256_128F_SIMPLE_CLEAN_SRCS} sig_sphincs_shake256_128f_simple.c )
@ -237,7 +237,7 @@ endif()
if(OQS_ENABLE_SIG_sphincs_shake256_128s_robust)
set(SRCS_SPHINCS_SHAKE256_128S_ROBUST_CLEAN_SRCS pqclean_sphincs_shake256_128s_robust_clean/hash_shake256.c pqclean_sphincs_shake256_128s_robust_clean/thash_shake256_robust.c pqclean_sphincs_shake256_128s_robust_clean/utils.c pqclean_sphincs_shake256_128s_robust_clean/sign.c pqclean_sphincs_shake256_128s_robust_clean/wots.c pqclean_sphincs_shake256_128s_robust_clean/fors.c pqclean_sphincs_shake256_128s_robust_clean/address.c)
set(SRCS_SPHINCS_SHAKE256_128S_ROBUST_CLEAN_SRCS pqclean_sphincs_shake256_128s_robust_clean/address.c pqclean_sphincs_shake256_128s_robust_clean/fors.c pqclean_sphincs_shake256_128s_robust_clean/hash_shake256.c pqclean_sphincs_shake256_128s_robust_clean/sign.c pqclean_sphincs_shake256_128s_robust_clean/thash_shake256_robust.c pqclean_sphincs_shake256_128s_robust_clean/utils.c pqclean_sphincs_shake256_128s_robust_clean/wots.c)
set(SRCS_SPHINCS_SHAKE256_128S_ROBUST_CLEAN_SRCS ${SRCS_SPHINCS_SHAKE256_128S_ROBUST_CLEAN_SRCS} sig_sphincs_shake256_128s_robust.c )
@ -246,7 +246,7 @@ endif()
if(OQS_ENABLE_SIG_sphincs_shake256_128s_simple)
set(SRCS_SPHINCS_SHAKE256_128S_SIMPLE_CLEAN_SRCS pqclean_sphincs_shake256_128s_simple_clean/hash_shake256.c pqclean_sphincs_shake256_128s_simple_clean/utils.c pqclean_sphincs_shake256_128s_simple_clean/sign.c pqclean_sphincs_shake256_128s_simple_clean/wots.c pqclean_sphincs_shake256_128s_simple_clean/fors.c pqclean_sphincs_shake256_128s_simple_clean/thash_shake256_simple.c pqclean_sphincs_shake256_128s_simple_clean/address.c)
set(SRCS_SPHINCS_SHAKE256_128S_SIMPLE_CLEAN_SRCS pqclean_sphincs_shake256_128s_simple_clean/address.c pqclean_sphincs_shake256_128s_simple_clean/fors.c pqclean_sphincs_shake256_128s_simple_clean/hash_shake256.c pqclean_sphincs_shake256_128s_simple_clean/sign.c pqclean_sphincs_shake256_128s_simple_clean/thash_shake256_simple.c pqclean_sphincs_shake256_128s_simple_clean/utils.c pqclean_sphincs_shake256_128s_simple_clean/wots.c)
set(SRCS_SPHINCS_SHAKE256_128S_SIMPLE_CLEAN_SRCS ${SRCS_SPHINCS_SHAKE256_128S_SIMPLE_CLEAN_SRCS} sig_sphincs_shake256_128s_simple.c )
@ -255,7 +255,7 @@ endif()
if(OQS_ENABLE_SIG_sphincs_shake256_192f_robust)
set(SRCS_SPHINCS_SHAKE256_192F_ROBUST_CLEAN_SRCS pqclean_sphincs_shake256_192f_robust_clean/hash_shake256.c pqclean_sphincs_shake256_192f_robust_clean/thash_shake256_robust.c pqclean_sphincs_shake256_192f_robust_clean/utils.c pqclean_sphincs_shake256_192f_robust_clean/sign.c pqclean_sphincs_shake256_192f_robust_clean/wots.c pqclean_sphincs_shake256_192f_robust_clean/fors.c pqclean_sphincs_shake256_192f_robust_clean/address.c)
set(SRCS_SPHINCS_SHAKE256_192F_ROBUST_CLEAN_SRCS pqclean_sphincs_shake256_192f_robust_clean/address.c pqclean_sphincs_shake256_192f_robust_clean/fors.c pqclean_sphincs_shake256_192f_robust_clean/hash_shake256.c pqclean_sphincs_shake256_192f_robust_clean/sign.c pqclean_sphincs_shake256_192f_robust_clean/thash_shake256_robust.c pqclean_sphincs_shake256_192f_robust_clean/utils.c pqclean_sphincs_shake256_192f_robust_clean/wots.c)
set(SRCS_SPHINCS_SHAKE256_192F_ROBUST_CLEAN_SRCS ${SRCS_SPHINCS_SHAKE256_192F_ROBUST_CLEAN_SRCS} sig_sphincs_shake256_192f_robust.c )
@ -264,7 +264,7 @@ endif()
if(OQS_ENABLE_SIG_sphincs_shake256_192f_simple)
set(SRCS_SPHINCS_SHAKE256_192F_SIMPLE_CLEAN_SRCS pqclean_sphincs_shake256_192f_simple_clean/hash_shake256.c pqclean_sphincs_shake256_192f_simple_clean/utils.c pqclean_sphincs_shake256_192f_simple_clean/sign.c pqclean_sphincs_shake256_192f_simple_clean/wots.c pqclean_sphincs_shake256_192f_simple_clean/fors.c pqclean_sphincs_shake256_192f_simple_clean/thash_shake256_simple.c pqclean_sphincs_shake256_192f_simple_clean/address.c)
set(SRCS_SPHINCS_SHAKE256_192F_SIMPLE_CLEAN_SRCS pqclean_sphincs_shake256_192f_simple_clean/address.c pqclean_sphincs_shake256_192f_simple_clean/fors.c pqclean_sphincs_shake256_192f_simple_clean/hash_shake256.c pqclean_sphincs_shake256_192f_simple_clean/sign.c pqclean_sphincs_shake256_192f_simple_clean/thash_shake256_simple.c pqclean_sphincs_shake256_192f_simple_clean/utils.c pqclean_sphincs_shake256_192f_simple_clean/wots.c)
set(SRCS_SPHINCS_SHAKE256_192F_SIMPLE_CLEAN_SRCS ${SRCS_SPHINCS_SHAKE256_192F_SIMPLE_CLEAN_SRCS} sig_sphincs_shake256_192f_simple.c )
@ -273,7 +273,7 @@ endif()
if(OQS_ENABLE_SIG_sphincs_shake256_192s_robust)
set(SRCS_SPHINCS_SHAKE256_192S_ROBUST_CLEAN_SRCS pqclean_sphincs_shake256_192s_robust_clean/hash_shake256.c pqclean_sphincs_shake256_192s_robust_clean/thash_shake256_robust.c pqclean_sphincs_shake256_192s_robust_clean/utils.c pqclean_sphincs_shake256_192s_robust_clean/sign.c pqclean_sphincs_shake256_192s_robust_clean/wots.c pqclean_sphincs_shake256_192s_robust_clean/fors.c pqclean_sphincs_shake256_192s_robust_clean/address.c)
set(SRCS_SPHINCS_SHAKE256_192S_ROBUST_CLEAN_SRCS pqclean_sphincs_shake256_192s_robust_clean/address.c pqclean_sphincs_shake256_192s_robust_clean/fors.c pqclean_sphincs_shake256_192s_robust_clean/hash_shake256.c pqclean_sphincs_shake256_192s_robust_clean/sign.c pqclean_sphincs_shake256_192s_robust_clean/thash_shake256_robust.c pqclean_sphincs_shake256_192s_robust_clean/utils.c pqclean_sphincs_shake256_192s_robust_clean/wots.c)
set(SRCS_SPHINCS_SHAKE256_192S_ROBUST_CLEAN_SRCS ${SRCS_SPHINCS_SHAKE256_192S_ROBUST_CLEAN_SRCS} sig_sphincs_shake256_192s_robust.c )
@ -282,7 +282,7 @@ endif()
if(OQS_ENABLE_SIG_sphincs_shake256_192s_simple)
set(SRCS_SPHINCS_SHAKE256_192S_SIMPLE_CLEAN_SRCS pqclean_sphincs_shake256_192s_simple_clean/hash_shake256.c pqclean_sphincs_shake256_192s_simple_clean/utils.c pqclean_sphincs_shake256_192s_simple_clean/sign.c pqclean_sphincs_shake256_192s_simple_clean/wots.c pqclean_sphincs_shake256_192s_simple_clean/fors.c pqclean_sphincs_shake256_192s_simple_clean/thash_shake256_simple.c pqclean_sphincs_shake256_192s_simple_clean/address.c)
set(SRCS_SPHINCS_SHAKE256_192S_SIMPLE_CLEAN_SRCS pqclean_sphincs_shake256_192s_simple_clean/address.c pqclean_sphincs_shake256_192s_simple_clean/fors.c pqclean_sphincs_shake256_192s_simple_clean/hash_shake256.c pqclean_sphincs_shake256_192s_simple_clean/sign.c pqclean_sphincs_shake256_192s_simple_clean/thash_shake256_simple.c pqclean_sphincs_shake256_192s_simple_clean/utils.c pqclean_sphincs_shake256_192s_simple_clean/wots.c)
set(SRCS_SPHINCS_SHAKE256_192S_SIMPLE_CLEAN_SRCS ${SRCS_SPHINCS_SHAKE256_192S_SIMPLE_CLEAN_SRCS} sig_sphincs_shake256_192s_simple.c )
@ -291,7 +291,7 @@ endif()
if(OQS_ENABLE_SIG_sphincs_shake256_256f_robust)
set(SRCS_SPHINCS_SHAKE256_256F_ROBUST_CLEAN_SRCS pqclean_sphincs_shake256_256f_robust_clean/hash_shake256.c pqclean_sphincs_shake256_256f_robust_clean/thash_shake256_robust.c pqclean_sphincs_shake256_256f_robust_clean/utils.c pqclean_sphincs_shake256_256f_robust_clean/sign.c pqclean_sphincs_shake256_256f_robust_clean/wots.c pqclean_sphincs_shake256_256f_robust_clean/fors.c pqclean_sphincs_shake256_256f_robust_clean/address.c)
set(SRCS_SPHINCS_SHAKE256_256F_ROBUST_CLEAN_SRCS pqclean_sphincs_shake256_256f_robust_clean/address.c pqclean_sphincs_shake256_256f_robust_clean/fors.c pqclean_sphincs_shake256_256f_robust_clean/hash_shake256.c pqclean_sphincs_shake256_256f_robust_clean/sign.c pqclean_sphincs_shake256_256f_robust_clean/thash_shake256_robust.c pqclean_sphincs_shake256_256f_robust_clean/utils.c pqclean_sphincs_shake256_256f_robust_clean/wots.c)
set(SRCS_SPHINCS_SHAKE256_256F_ROBUST_CLEAN_SRCS ${SRCS_SPHINCS_SHAKE256_256F_ROBUST_CLEAN_SRCS} sig_sphincs_shake256_256f_robust.c )
@ -300,7 +300,7 @@ endif()
if(OQS_ENABLE_SIG_sphincs_shake256_256f_simple)
set(SRCS_SPHINCS_SHAKE256_256F_SIMPLE_CLEAN_SRCS pqclean_sphincs_shake256_256f_simple_clean/hash_shake256.c pqclean_sphincs_shake256_256f_simple_clean/utils.c pqclean_sphincs_shake256_256f_simple_clean/sign.c pqclean_sphincs_shake256_256f_simple_clean/wots.c pqclean_sphincs_shake256_256f_simple_clean/fors.c pqclean_sphincs_shake256_256f_simple_clean/thash_shake256_simple.c pqclean_sphincs_shake256_256f_simple_clean/address.c)
set(SRCS_SPHINCS_SHAKE256_256F_SIMPLE_CLEAN_SRCS pqclean_sphincs_shake256_256f_simple_clean/address.c pqclean_sphincs_shake256_256f_simple_clean/fors.c pqclean_sphincs_shake256_256f_simple_clean/hash_shake256.c pqclean_sphincs_shake256_256f_simple_clean/sign.c pqclean_sphincs_shake256_256f_simple_clean/thash_shake256_simple.c pqclean_sphincs_shake256_256f_simple_clean/utils.c pqclean_sphincs_shake256_256f_simple_clean/wots.c)
set(SRCS_SPHINCS_SHAKE256_256F_SIMPLE_CLEAN_SRCS ${SRCS_SPHINCS_SHAKE256_256F_SIMPLE_CLEAN_SRCS} sig_sphincs_shake256_256f_simple.c )
@ -309,7 +309,7 @@ endif()
if(OQS_ENABLE_SIG_sphincs_shake256_256s_robust)
set(SRCS_SPHINCS_SHAKE256_256S_ROBUST_CLEAN_SRCS pqclean_sphincs_shake256_256s_robust_clean/hash_shake256.c pqclean_sphincs_shake256_256s_robust_clean/thash_shake256_robust.c pqclean_sphincs_shake256_256s_robust_clean/utils.c pqclean_sphincs_shake256_256s_robust_clean/sign.c pqclean_sphincs_shake256_256s_robust_clean/wots.c pqclean_sphincs_shake256_256s_robust_clean/fors.c pqclean_sphincs_shake256_256s_robust_clean/address.c)
set(SRCS_SPHINCS_SHAKE256_256S_ROBUST_CLEAN_SRCS pqclean_sphincs_shake256_256s_robust_clean/address.c pqclean_sphincs_shake256_256s_robust_clean/fors.c pqclean_sphincs_shake256_256s_robust_clean/hash_shake256.c pqclean_sphincs_shake256_256s_robust_clean/sign.c pqclean_sphincs_shake256_256s_robust_clean/thash_shake256_robust.c pqclean_sphincs_shake256_256s_robust_clean/utils.c pqclean_sphincs_shake256_256s_robust_clean/wots.c)
set(SRCS_SPHINCS_SHAKE256_256S_ROBUST_CLEAN_SRCS ${SRCS_SPHINCS_SHAKE256_256S_ROBUST_CLEAN_SRCS} sig_sphincs_shake256_256s_robust.c )
@ -318,7 +318,7 @@ endif()
if(OQS_ENABLE_SIG_sphincs_shake256_256s_simple)
set(SRCS_SPHINCS_SHAKE256_256S_SIMPLE_CLEAN_SRCS pqclean_sphincs_shake256_256s_simple_clean/hash_shake256.c pqclean_sphincs_shake256_256s_simple_clean/utils.c pqclean_sphincs_shake256_256s_simple_clean/sign.c pqclean_sphincs_shake256_256s_simple_clean/wots.c pqclean_sphincs_shake256_256s_simple_clean/fors.c pqclean_sphincs_shake256_256s_simple_clean/thash_shake256_simple.c pqclean_sphincs_shake256_256s_simple_clean/address.c)
set(SRCS_SPHINCS_SHAKE256_256S_SIMPLE_CLEAN_SRCS pqclean_sphincs_shake256_256s_simple_clean/address.c pqclean_sphincs_shake256_256s_simple_clean/fors.c pqclean_sphincs_shake256_256s_simple_clean/hash_shake256.c pqclean_sphincs_shake256_256s_simple_clean/sign.c pqclean_sphincs_shake256_256s_simple_clean/thash_shake256_simple.c pqclean_sphincs_shake256_256s_simple_clean/utils.c pqclean_sphincs_shake256_256s_simple_clean/wots.c)
set(SRCS_SPHINCS_SHAKE256_256S_SIMPLE_CLEAN_SRCS ${SRCS_SPHINCS_SHAKE256_256S_SIMPLE_CLEAN_SRCS} sig_sphincs_shake256_256s_simple.c )