diff --git a/scripts/copy_from_pqclean/src/kem/family/CMakeLists.txt b/scripts/copy_from_pqclean/src/kem/family/CMakeLists.txt index 1c921b50a..9ed2c2122 100644 --- a/scripts/copy_from_pqclean/src/kem/family/CMakeLists.txt +++ b/scripts/copy_from_pqclean/src/kem/family/CMakeLists.txt @@ -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 ) diff --git a/scripts/copy_from_pqclean/src/sig/family/CMakeLists.txt b/scripts/copy_from_pqclean/src/sig/family/CMakeLists.txt index 52df6a5c1..1ef56c13f 100644 --- a/scripts/copy_from_pqclean/src/sig/family/CMakeLists.txt +++ b/scripts/copy_from_pqclean/src/sig/family/CMakeLists.txt @@ -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 ) diff --git a/src/kem/classic_mceliece/CMakeLists.txt b/src/kem/classic_mceliece/CMakeLists.txt index 93105408c..7803bb083 100644 --- a/src/kem/classic_mceliece/CMakeLists.txt +++ b/src/kem/classic_mceliece/CMakeLists.txt @@ -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() diff --git a/src/kem/kyber/CMakeLists.txt b/src/kem/kyber/CMakeLists.txt index c11207ed0..9b2b0a955 100644 --- a/src/kem/kyber/CMakeLists.txt +++ b/src/kem/kyber/CMakeLists.txt @@ -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() diff --git a/src/kem/ledacrypt/CMakeLists.txt b/src/kem/ledacrypt/CMakeLists.txt index 739025f10..324880204 100644 --- a/src/kem/ledacrypt/CMakeLists.txt +++ b/src/kem/ledacrypt/CMakeLists.txt @@ -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() diff --git a/src/kem/newhope/CMakeLists.txt b/src/kem/newhope/CMakeLists.txt index af04eb7b8..09573127a 100644 --- a/src/kem/newhope/CMakeLists.txt +++ b/src/kem/newhope/CMakeLists.txt @@ -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 ) diff --git a/src/kem/ntru/CMakeLists.txt b/src/kem/ntru/CMakeLists.txt index 18f2692ff..798be377e 100644 --- a/src/kem/ntru/CMakeLists.txt +++ b/src/kem/ntru/CMakeLists.txt @@ -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 ) diff --git a/src/kem/saber/CMakeLists.txt b/src/kem/saber/CMakeLists.txt index f43a0932c..54f4f6912 100644 --- a/src/kem/saber/CMakeLists.txt +++ b/src/kem/saber/CMakeLists.txt @@ -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 ) diff --git a/src/kem/threebears/CMakeLists.txt b/src/kem/threebears/CMakeLists.txt index c4517a94f..c2e318a35 100644 --- a/src/kem/threebears/CMakeLists.txt +++ b/src/kem/threebears/CMakeLists.txt @@ -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 ) diff --git a/src/sig/dilithium/CMakeLists.txt b/src/sig/dilithium/CMakeLists.txt index 1fc521bb9..5db68a0d7 100644 --- a/src/sig/dilithium/CMakeLists.txt +++ b/src/sig/dilithium/CMakeLists.txt @@ -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() diff --git a/src/sig/dilithium/pqclean_dilithium2_avx2/fips202x4.o b/src/sig/dilithium/pqclean_dilithium2_avx2/fips202x4.o deleted file mode 100644 index 1d2b8b268..000000000 Binary files a/src/sig/dilithium/pqclean_dilithium2_avx2/fips202x4.o and /dev/null differ diff --git a/src/sig/dilithium/pqclean_dilithium2_avx2/invntt.o b/src/sig/dilithium/pqclean_dilithium2_avx2/invntt.o deleted file mode 100644 index c04e4c443..000000000 Binary files a/src/sig/dilithium/pqclean_dilithium2_avx2/invntt.o and /dev/null differ diff --git a/src/sig/dilithium/pqclean_dilithium2_avx2/libdilithium2_avx2.a b/src/sig/dilithium/pqclean_dilithium2_avx2/libdilithium2_avx2.a deleted file mode 100644 index 5d9f9e3a7..000000000 Binary files a/src/sig/dilithium/pqclean_dilithium2_avx2/libdilithium2_avx2.a and /dev/null differ diff --git a/src/sig/dilithium/pqclean_dilithium2_avx2/ntt.o b/src/sig/dilithium/pqclean_dilithium2_avx2/ntt.o deleted file mode 100644 index 6b6220353..000000000 Binary files a/src/sig/dilithium/pqclean_dilithium2_avx2/ntt.o and /dev/null differ diff --git a/src/sig/dilithium/pqclean_dilithium2_avx2/nttconsts.o b/src/sig/dilithium/pqclean_dilithium2_avx2/nttconsts.o deleted file mode 100644 index 9f5b5c97e..000000000 Binary files a/src/sig/dilithium/pqclean_dilithium2_avx2/nttconsts.o and /dev/null differ diff --git a/src/sig/dilithium/pqclean_dilithium2_avx2/packing.o b/src/sig/dilithium/pqclean_dilithium2_avx2/packing.o deleted file mode 100644 index 2deab5681..000000000 Binary files a/src/sig/dilithium/pqclean_dilithium2_avx2/packing.o and /dev/null differ diff --git a/src/sig/dilithium/pqclean_dilithium2_avx2/pointwise.o b/src/sig/dilithium/pqclean_dilithium2_avx2/pointwise.o deleted file mode 100644 index b3494e5d7..000000000 Binary files a/src/sig/dilithium/pqclean_dilithium2_avx2/pointwise.o and /dev/null differ diff --git a/src/sig/dilithium/pqclean_dilithium2_avx2/poly.o b/src/sig/dilithium/pqclean_dilithium2_avx2/poly.o deleted file mode 100644 index 1b190cd5e..000000000 Binary files a/src/sig/dilithium/pqclean_dilithium2_avx2/poly.o and /dev/null differ diff --git a/src/sig/dilithium/pqclean_dilithium2_avx2/polyvec.o b/src/sig/dilithium/pqclean_dilithium2_avx2/polyvec.o deleted file mode 100644 index 4c364f30c..000000000 Binary files a/src/sig/dilithium/pqclean_dilithium2_avx2/polyvec.o and /dev/null differ diff --git a/src/sig/dilithium/pqclean_dilithium2_avx2/reduce.o b/src/sig/dilithium/pqclean_dilithium2_avx2/reduce.o deleted file mode 100644 index a3f3119f4..000000000 Binary files a/src/sig/dilithium/pqclean_dilithium2_avx2/reduce.o and /dev/null differ diff --git a/src/sig/dilithium/pqclean_dilithium2_avx2/rejsample.o b/src/sig/dilithium/pqclean_dilithium2_avx2/rejsample.o deleted file mode 100644 index a24baa683..000000000 Binary files a/src/sig/dilithium/pqclean_dilithium2_avx2/rejsample.o and /dev/null differ diff --git a/src/sig/dilithium/pqclean_dilithium2_avx2/rounding.o b/src/sig/dilithium/pqclean_dilithium2_avx2/rounding.o deleted file mode 100644 index aaf319cbe..000000000 Binary files a/src/sig/dilithium/pqclean_dilithium2_avx2/rounding.o and /dev/null differ diff --git a/src/sig/dilithium/pqclean_dilithium2_avx2/sign.o b/src/sig/dilithium/pqclean_dilithium2_avx2/sign.o deleted file mode 100644 index 21a0a1e70..000000000 Binary files a/src/sig/dilithium/pqclean_dilithium2_avx2/sign.o and /dev/null differ diff --git a/src/sig/dilithium/pqclean_dilithium2_avx2/stream.o b/src/sig/dilithium/pqclean_dilithium2_avx2/stream.o deleted file mode 100644 index 18521402f..000000000 Binary files a/src/sig/dilithium/pqclean_dilithium2_avx2/stream.o and /dev/null differ diff --git a/src/sig/falcon/CMakeLists.txt b/src/sig/falcon/CMakeLists.txt index 17f74b3e3..f032304e6 100644 --- a/src/sig/falcon/CMakeLists.txt +++ b/src/sig/falcon/CMakeLists.txt @@ -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 ) diff --git a/src/sig/mqdss/CMakeLists.txt b/src/sig/mqdss/CMakeLists.txt index bceaae125..c48de386a 100644 --- a/src/sig/mqdss/CMakeLists.txt +++ b/src/sig/mqdss/CMakeLists.txt @@ -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 ) diff --git a/src/sig/rainbow/CMakeLists.txt b/src/sig/rainbow/CMakeLists.txt index d1ad957f9..9cae20743 100644 --- a/src/sig/rainbow/CMakeLists.txt +++ b/src/sig/rainbow/CMakeLists.txt @@ -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 ) diff --git a/src/sig/sphincs/CMakeLists.txt b/src/sig/sphincs/CMakeLists.txt index 1ed2b63b3..10df6dc8f 100644 --- a/src/sig/sphincs/CMakeLists.txt +++ b/src/sig/sphincs/CMakeLists.txt @@ -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 )