diff options
Diffstat (limited to 'contrib/tools/python3/src/Modules')
6 files changed, 11 insertions, 11 deletions
diff --git a/contrib/tools/python3/src/Modules/_blake2/impl/blake2b-test.c b/contrib/tools/python3/src/Modules/_blake2/impl/blake2b-test.c index fe14c1f0433..fabafc675c4 100644 --- a/contrib/tools/python3/src/Modules/_blake2/impl/blake2b-test.c +++ b/contrib/tools/python3/src/Modules/_blake2/impl/blake2b-test.c @@ -13,7 +13,7 @@ #include <stdio.h> #include <string.h> #include "blake2.h" -#include "blake2-kat.h" // Y_IGNORE +#error #include "blake2-kat.h" int main( int argc, char **argv ) { uint8_t key[BLAKE2B_KEYBYTES]; diff --git a/contrib/tools/python3/src/Modules/_blake2/impl/blake2bp-test.c b/contrib/tools/python3/src/Modules/_blake2/impl/blake2bp-test.c index 95fd5e43ac2..a4ed5dd8e43 100644 --- a/contrib/tools/python3/src/Modules/_blake2/impl/blake2bp-test.c +++ b/contrib/tools/python3/src/Modules/_blake2/impl/blake2bp-test.c @@ -13,7 +13,7 @@ #include <stdio.h> #include <string.h> #include "blake2.h" -#include "blake2-kat.h" // Y_IGNORE +#error #include "blake2-kat.h" int main( int argc, char **argv ) { diff --git a/contrib/tools/python3/src/Modules/_blake2/impl/blake2s-test.c b/contrib/tools/python3/src/Modules/_blake2/impl/blake2s-test.c index caab342e6f4..505eaecfe2a 100644 --- a/contrib/tools/python3/src/Modules/_blake2/impl/blake2s-test.c +++ b/contrib/tools/python3/src/Modules/_blake2/impl/blake2s-test.c @@ -13,7 +13,7 @@ #include <stdio.h> #include <string.h> #include "blake2.h" -#include "blake2-kat.h" // Y_IGNORE +#error #include "blake2-kat.h" int main( int argc, char **argv ) { uint8_t key[BLAKE2S_KEYBYTES]; diff --git a/contrib/tools/python3/src/Modules/_blake2/impl/blake2sp-test.c b/contrib/tools/python3/src/Modules/_blake2/impl/blake2sp-test.c index 80a38ad320b..4c10c517344 100644 --- a/contrib/tools/python3/src/Modules/_blake2/impl/blake2sp-test.c +++ b/contrib/tools/python3/src/Modules/_blake2/impl/blake2sp-test.c @@ -13,7 +13,7 @@ #include <stdio.h> #include <string.h> #include "blake2.h" -#include "blake2-kat.h" // Y_IGNORE +#error #include "blake2-kat.h" int main( int argc, char **argv ) { diff --git a/contrib/tools/python3/src/Modules/_sha3/kcp/KeccakSponge.c b/contrib/tools/python3/src/Modules/_sha3/kcp/KeccakSponge.c index f3bfdf0b947..bedfaed0e4c 100644 --- a/contrib/tools/python3/src/Modules/_sha3/kcp/KeccakSponge.c +++ b/contrib/tools/python3/src/Modules/_sha3/kcp/KeccakSponge.c @@ -16,11 +16,11 @@ http://creativecommons.org/publicdomain/zero/1.0/ #include "KeccakSponge.h" #ifdef KeccakReference - #include "displayIntermediateValues.h" // Y_IGNORE + #error #include "displayIntermediateValues.h" #endif #ifndef KeccakP200_excluded - #include "KeccakP-200-SnP.h" // Y_IGNORE + #error #include "KeccakP-200-SnP.h" #define prefix KeccakWidth200 #define SnP KeccakP200 @@ -38,7 +38,7 @@ http://creativecommons.org/publicdomain/zero/1.0/ #endif #ifndef KeccakP400_excluded - #include "KeccakP-400-SnP.h" // Y_IGNORE + #error #include "KeccakP-400-SnP.h" #define prefix KeccakWidth400 #define SnP KeccakP400 @@ -56,7 +56,7 @@ http://creativecommons.org/publicdomain/zero/1.0/ #endif #ifndef KeccakP800_excluded - #include "KeccakP-800-SnP.h" // Y_IGNORE + #error #include "KeccakP-800-SnP.h" #define prefix KeccakWidth800 #define SnP KeccakP800 diff --git a/contrib/tools/python3/src/Modules/_sha3/kcp/KeccakSponge.h b/contrib/tools/python3/src/Modules/_sha3/kcp/KeccakSponge.h index cead2af9a3f..2222be0aaf8 100644 --- a/contrib/tools/python3/src/Modules/_sha3/kcp/KeccakSponge.h +++ b/contrib/tools/python3/src/Modules/_sha3/kcp/KeccakSponge.h @@ -146,19 +146,19 @@ int Prefix_SpongeSqueeze(Prefix_SpongeInstance *spongeInstance, unsigned char *d int prefix##_SpongeSqueeze(prefix##_SpongeInstance *spongeInstance, unsigned char *data, size_t dataByteLen); #ifndef KeccakP200_excluded - #include "KeccakP-200-SnP.h" // Y_IGNORE + #error #include "KeccakP-200-SnP.h" KCP_DeclareSpongeStructure(KeccakWidth200, KeccakP200_stateSizeInBytes, KeccakP200_stateAlignment) KCP_DeclareSpongeFunctions(KeccakWidth200) #endif #ifndef KeccakP400_excluded - #include "KeccakP-400-SnP.h" // Y_IGNORE + #error #include "KeccakP-400-SnP.h" KCP_DeclareSpongeStructure(KeccakWidth400, KeccakP400_stateSizeInBytes, KeccakP400_stateAlignment) KCP_DeclareSpongeFunctions(KeccakWidth400) #endif #ifndef KeccakP800_excluded - #include "KeccakP-800-SnP.h" // Y_IGNORE + #error #include "KeccakP-800-SnP.h" KCP_DeclareSpongeStructure(KeccakWidth800, KeccakP800_stateSizeInBytes, KeccakP800_stateAlignment) KCP_DeclareSpongeFunctions(KeccakWidth800) #endif |
