diff options
author | Mattias Andrée <maandree@kth.se> | 2024-08-24 11:26:42 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2024-08-24 11:26:42 +0200 |
commit | 3a73ab675a19e2ea29b4cb1385db0188ce4997f8 (patch) | |
tree | b010de454a833b01fe2ed469fd4f0fd699c59e50 /sha1.c | |
parent | Test partial byte support in SHA1 and SHA-224 (diff) | |
download | libhashsum-3a73ab675a19e2ea29b4cb1385db0188ce4997f8.tar.gz libhashsum-3a73ab675a19e2ea29b4cb1385db0188ce4997f8.tar.bz2 libhashsum-3a73ab675a19e2ea29b4cb1385db0188ce4997f8.tar.xz |
Make algorithms optional
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'sha1.c')
-rw-r--r-- | sha1.c | 15 |
1 files changed, 11 insertions, 4 deletions
@@ -1,6 +1,7 @@ /* See LICENSE file for copyright and license details. */ -#define TEST -#include "common.h" +#ifdef SUPPORT_SHA1 +# define TEST +# include "common.h" static struct testcase testcases[] = { @@ -14,11 +15,11 @@ static struct testcase testcases[] = { {1, 0, "abc", "a9993e364706816aba3e25717850c26c9cd0d89d"}, {1, 0, "abcdbcdecdefdefgefghfghighijhijkijkljklmklmnlmnomnopnopq", "84983e441c3bd26ebaae4aa1f95129e5e54670f1"}, -#ifdef MASSIVE_TESTS +# ifdef MASSIVE_TESTS {0x20000000UL, 0, "A", "df3f26fce8fa7bec2c61d0506749a320ac7dc942"}, {0x41000000UL, 8, "\0", "320c617b0b6ee1b6f9c3271eae135f40cae22c10"}, {0x6000003FUL, 0, "\x84", "b20aa99b62e6a480fd93b4d24b2c19ffac649bb8"}, -#endif +# endif {1000000UL, 8, "\0", "bef3595266a65a2ff36b700a75e8ed95c68210b6"}, {0, 1, "\x00", "bb6b3e18f0115b57925241676f5b1ae88747b08a"}, {0, 2, "\x01", "ec6b39952e1a3ec3ab3507185cf756181c84bbe2"}, @@ -30,6 +31,12 @@ static struct testcase testcases[] = { }; +#else +# define TEST_UNSUPPORTED +# include "common.h" +#endif + + int main(void) { |