aboutsummaryrefslogtreecommitdiffstats
path: root/test.c
diff options
context:
space:
mode:
authorMattias Andrée <maandree@kth.se>2019-02-11 17:56:37 +0100
committerMattias Andrée <maandree@kth.se>2019-02-11 17:56:37 +0100
commit5cee9b9c6394cffee6f31fab00323d9e559f0702 (patch)
treed21ba3da234c46b4f3c96e0065eb83d8c3cc8e96 /test.c
parentDeprecate typedefs (diff)
downloadlibkeccak-5cee9b9c6394cffee6f31fab00323d9e559f0702.tar.gz
libkeccak-5cee9b9c6394cffee6f31fab00323d9e559f0702.tar.bz2
libkeccak-5cee9b9c6394cffee6f31fab00323d9e559f0702.tar.xz
General improvements
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'test.c')
-rw-r--r--test.c316
1 files changed, 204 insertions, 112 deletions
diff --git a/test.c b/test.c
index 7f5d54c..059a9eb 100644
--- a/test.c
+++ b/test.c
@@ -21,32 +21,40 @@ test_hex(void)
char hextest[2 * 8 + 1];
printf("Testing libkeccak_behex_lower: ");
- libkeccak_behex_lower(hextest, (const char*)bindata, 8);
- if (!strcmp(hextest, hexdata_lower))
+ libkeccak_behex_lower(hextest, (const char *)bindata, 8);
+ if (!strcmp(hextest, hexdata_lower)) {
printf("OK\n");
- else
- return printf("Fail\n"), -1;
+ } else {
+ printf("Fail\n");
+ return -1;
+ }
printf("Testing libkeccak_behex_upper: ");
- libkeccak_behex_upper(hextest, (const char*)bindata, 8);
- if (!strcmp(hextest, hexdata_upper))
+ libkeccak_behex_upper(hextest, (const char *)bindata, 8);
+ if (!strcmp(hextest, hexdata_upper)) {
printf("OK\n");
- else
- return printf("Fail\n"), -1;
+ } else {
+ printf("Fail\n");
+ return -1;
+ }
printf("Testing libkeccak_unhex on uppercase: ");
libkeccak_unhex(hextest, hexdata_upper);
- if (!memcmp(bindata, hextest, 8 * sizeof(char)))
+ if (!memcmp(bindata, hextest, 8 * sizeof(char))) {
printf("OK\n");
- else
- return printf("Fail\n"), -1;
+ } else {
+ printf("Fail\n");
+ return -1;
+ }
printf("Testing libkeccak_unhex on lowercase: ");
libkeccak_unhex(hextest, hexdata_lower);
- if (!memcmp(bindata, hextest, 8 * sizeof(char)))
+ if (!memcmp(bindata, hextest, 8 * sizeof(char))) {
printf("OK\n");
- else
- return printf("Fail\n"), -1;
+ } else {
+ printf("Fail\n");
+ return -1;
+ }
printf("\n");
return 0;
@@ -67,42 +75,66 @@ test_state(struct libkeccak_spec *restrict spec)
size_t marshal_size, marshalled_size, i, n;
char *restrict marshalled_data;
- if (state = libkeccak_state_create(spec), state == NULL)
- return perror("libkeccak_state_initialise"), -1;
+ state = libkeccak_state_create(spec);
+ if (!state) {
+ perror("libkeccak_state_initialise");
+ return -1;
+ }
n = state->mlen / 2;
for (i = 0; i < n; i++)
- state->M[state->mptr++] = (char)(i & 255);
+ state->M[state->mptr++] = (unsigned char)i;
- if (state2 = libkeccak_state_duplicate(state), state2 == NULL)
- return perror("libkeccak_state_duplicate"), -1;
+ state2 = libkeccak_state_duplicate(state);
+ if (!state2) {
+ perror("libkeccak_state_duplicate");
+ return -1;
+ }
- if (state->M[state->mptr - 1] != state2->M[state2->mptr - 1])
- return printf("Inconsistency found between original state and duplicate state.\n"), -1;
+ if (state->M[state->mptr - 1] != state2->M[state2->mptr - 1]) {
+ printf("Inconsistency found between original state and duplicate state.\n");
+ return -1;
+ }
marshal_size = libkeccak_state_marshal_size(state2);
- if (marshalled_data = malloc(marshal_size), marshalled_data == NULL)
- return perror("malloc"), -1;
+ marshalled_data = malloc(marshal_size);
+ if (!marshalled_data) {
+ perror("malloc");
+ return -1;
+ }
marshalled_size = libkeccak_state_marshal(state2, marshalled_data);
- if (marshalled_size != marshal_size)
- return printf("libkeccak_state_marshal returned an unexpected value.\n"), -1;
+ if (marshalled_size != marshal_size) {
+ printf("libkeccak_state_marshal returned an unexpected value.\n");
+ return -1;
+ }
libkeccak_state_free(state);
- if (state = malloc(sizeof(struct libkeccak_state)), state == NULL)
- return perror("malloc"), -1;
+ state = malloc(sizeof(struct libkeccak_state));
+ if (!state) {
+ perror("malloc");
+ return -1;
+ }
marshalled_size = libkeccak_state_unmarshal(state, marshalled_data);
- if (marshalled_size == 0)
- return perror("libkeccak_state_unmarshal"), -1;
- if (marshalled_size != marshal_size)
- return printf("libkeccak_state_unmarshal returned an unexpected value.\n"), -1;
+ if (!marshalled_size) {
+ perror("libkeccak_state_unmarshal");
+ return -1;
+ }
+ if (marshalled_size != marshal_size) {
+ printf("libkeccak_state_unmarshal returned an unexpected value.\n");
+ return -1;
+ }
- if (libkeccak_state_unmarshal_skip(marshalled_data) != marshal_size)
- return printf("libkeccak_state_unmarshal_skip returned an unexpected value.\n"), -1;
+ if (libkeccak_state_unmarshal_skip(marshalled_data) != marshal_size) {
+ printf("libkeccak_state_unmarshal_skip returned an unexpected value.\n");
+ return -1;
+ }
- if (state->M[state->mptr - 1] != state2->M[state2->mptr - 1])
- return printf("Inconsistency found between original state and unmarshalled state.\n"), -1;
+ if (state->M[state->mptr - 1] != state2->M[state2->mptr - 1]) {
+ printf("Inconsistency found between original state and unmarshalled state.\n");
+ return -1;
+ }
free(marshalled_data);
libkeccak_state_free(state);
@@ -123,10 +155,10 @@ test_state(struct libkeccak_spec *restrict spec)
*/
static int
test_digest_case(const struct libkeccak_spec *restrict spec, const char *restrict suffix,
- const char *restrict msg, long bits, const char *restrict expected_answer)
+ const char *restrict msg, long int bits, const char *restrict expected_answer)
{
struct libkeccak_state state;
- char *restrict hashsum;
+ unsigned char *restrict hashsum;
char *restrict hexsum;
int ok;
@@ -167,7 +199,8 @@ test_digest_case(const struct libkeccak_spec *restrict spec, const char *restric
*
* @return Zero on success, -1 on error
*/
-static int test_digest(void)
+static int
+test_digest(void)
{
#define sha3(output, message)\
(printf(" Testing SHA3-"#output"(%s): ", #message),\
@@ -212,96 +245,123 @@ static int test_digest(void)
answer = "6b4e03423667dbb73b6e15454f0eb1abd4597f9a1b078e3f5b5a6bc7";
- if (sha3(224, "")) return -1;
+ if (sha3(224, ""))
+ return -1;
answer = "a7ffc6f8bf1ed76651c14756a061d662f580ff4de43b49fa82d80a4b80f8434a";
- if (sha3(256, "")) return -1;
+ if (sha3(256, ""))
+ return -1;
answer = "0c63a75b845e4f7d01107d852e4c2485c51a50aaaa94fc61995e71bbee983a2ac3713831264adb47fb6bd1e058d5f004";
- if (sha3(384, "")) return -1;
+ if (sha3(384, ""))
+ return -1;
answer = "a69f73cca23a9ac5c8b567dc185a756e97c982164fe25859e0d1dcc1475c80a6"
- "15b2123af1f5f94c11e3e9402c3ac558f500199d95b6d3e301758586281dcd26";
- if (sha3(512, "")) return -1;
+ "15b2123af1f5f94c11e3e9402c3ac558f500199d95b6d3e301758586281dcd26";
+ if (sha3(512, ""))
+ return -1;
answer = "f71837502ba8e10837bdd8d365adb85591895602fc552b48b7390abd";
- if (keccak(224, "")) return -1;
+ if (keccak(224, ""))
+ return -1;
answer = "c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470";
- if (keccak(256, "")) return -1;
+ if (keccak(256, ""))
+ return -1;
answer = "2c23146a63a29acf99e73b88f8c24eaa7dc60aa771780ccc006afbfa8fe2479b2dd2b21362337441ac12b515911957ff";
- if (keccak(384, "")) return -1;
+ if (keccak(384, ""))
+ return -1;
answer = "0eab42de4c3ceb9235fc91acffe746b29c29a8c366b7c60e4e67c466f36a4304"
- "c00fa9caf9d87976ba469bcbe06713b435f091ef2769fb160cdab33d3670680e";
- if (keccak(512, "")) return -1;
+ "c00fa9caf9d87976ba469bcbe06713b435f091ef2769fb160cdab33d3670680e";
+ if (keccak(512, ""))
+ return -1;
answer = "22c8017ac8bcf65f59d1b7e92c9d4c6739d25e34ce5cb608b24ff096";
- if (sha3(224, "withdrew hypothesis snakebird qmc2")) return -1;
+ if (sha3(224, "withdrew hypothesis snakebird qmc2"))
+ return -1;
answer = "43808dde2662143dc4eed5dac5e98c74b06711829f02a3b121bd74f3";
- if (sha3(224, "intensifierat sturdiness perl-image-exiftool vingla")) return -1;
+ if (sha3(224, "intensifierat sturdiness perl-image-exiftool vingla"))
+ return -1;
answer = "d32b4ac86065774dee5eb5cdd2f67b4e86501086d7373884e8b20a36";
- if (sha3(224, "timjan avogadro uppdriven lib32-llvm-amdgpu-snapshot")) return -1;
+ if (sha3(224, "timjan avogadro uppdriven lib32-llvm-amdgpu-snapshot"))
+ return -1;
answer = "efbd76d45bfa952485148f8ad46143897f17c27ffdc8eb7287f9353b";
- if (sha3(224, "grilo-plugins auditorium tull dissimilarity's")) return -1;
+ if (sha3(224, "grilo-plugins auditorium tull dissimilarity's"))
+ return -1;
answer = "6705aa36ecf58f333e0e6364ac1d0b7931d402e13282127cfd6f876c";
- if (sha3(224, "royalty tt yellowstone deficiencies")) return -1;
+ if (sha3(224, "royalty tt yellowstone deficiencies"))
+ return -1;
answer = "803a0ff09dda0df306e483a9f91b20a3dbbf9c2ebb8d0a3b28f3b9e0";
- if (sha3(224, "kdegames-kdiamond tunisisk occurrence's outtalad")) return -1;
+ if (sha3(224, "kdegames-kdiamond tunisisk occurrence's outtalad"))
+ return -1;
answer = "a64779aca943a6aef1d2e7c9a0f4e997f4dabd1f77112a22121d3ed5";
- if (sha3(224, "chevalier slat's spindel representations")) return -1;
+ if (sha3(224, "chevalier slat's spindel representations"))
+ return -1;
answer = "f0a3e0587af7723f0aa4719059d3f5107115a5b3667cd5209cc4d867";
- if (sha3(224, "archery lexicographical equine veered")) return -1;
+ if (sha3(224, "archery lexicographical equine veered"))
+ return -1;
answer = "312e7e3c6403ab1a086155fb9a52b22a3d0d257876afd2b93fb7272e";
- if (sha3(224, "splay washbasin opposing there")) return -1;
+ if (sha3(224, "splay washbasin opposing there"))
+ return -1;
answer = "270ba05b764221ff5b5d94adfb4fdb1f36f07fe7c438904a5f3df071";
- if (sha3(224, "faktum desist thundered klen")) return -1;
+ if (sha3(224, "faktum desist thundered klen"))
+ return -1;
answer = "c5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470";
- if (keccak_bits(256, "\x00", 0)) return -1;
+ if (keccak_bits(256, "\x00", 0))
+ return -1;
answer = "a7ffc6f8bf1ed76651c14756a061d662f580ff4de43b49fa82d80a4b80f8434a";
- if (keccak_bits(256, "\x02", 2)) return -1;
+ if (keccak_bits(256, "\x02", 2))
+ return -1;
answer = "3a1108d4a90a31b85a10bdce77f4bfbdcc5b1d70dd405686f8bbde834aa1a410";
- if (keccak_bits(256, "\x03", 2)) return -1;
+ if (keccak_bits(256, "\x03", 2))
+ return -1;
answer = "46b9dd2b0ba88d13233b3feb743eeb243fcd52ea62b81b82b50c27646ed5762f";
- if (keccak_bits(256, "\x0F", 4)) return -1;
+ if (keccak_bits(256, "\x0F", 4))
+ return -1;
answer = "3a1108d4a90a31b85a10bdce77f4bfbd";
- if (rawshake(256, 128, "")) return -1;
+ if (rawshake(256, 128, ""))
+ return -1;
answer = "46b9dd2b0ba88d13233b3feb743eeb24";
- if (rawshake_bits(256, 128, "\x03", 2)) return -1;
+ if (rawshake_bits(256, 128, "\x03", 2))
+ return -1;
answer = "46b9dd2b0ba88d13233b3feb743eeb24";
- if (shake(256, 128, "")) return -1;
+ if (shake(256, 128, ""))
+ return -1;
answer = "65070cdd6f91c0aadcfc470895a2606c828bce7ce3fa723418c9013de92253515713cce8"
"d2098be1c82df40b40e375549c0eeb655f92d718f01f147ba1c7c67844c7ba8b11492cd6";
- if (keccak_g(1024, 1600 - 1024, 576, "capitol's kvistfri broadly raping")) return -1;
+ if (keccak_g(1024, 1600 - 1024, 576, "capitol's kvistfri broadly raping"))
+ return -1;
answer = "65070cdd6f91c0aadcfc470895a2606c828bce7ce3fa723418c9013de92253515713cce8"
"d2098be1c82df40b40e375549c0eeb655f92d718f01f147ba1c7c67844c7ba8b11492cd6"
"143466958504c110522f772fe746573b1dc905f943ed1ec6ecf858575798596beeca4eb6"
"bb7bea635bcea6331315728fb57866370bf1ad5d";
- if (keccak_g(1024, 1600 - 1024, 1024, "capitol's kvistfri broadly raping")) return -1;
+ if (keccak_g(1024, 1600 - 1024, 1024, "capitol's kvistfri broadly raping"))
+ return -1;
answer = "65070cdd6f91c0aadcfc470895a2606c828bce7ce3fa723418c9013de92253515713cce8"
"d2098be1c82df40b40e375549c0eeb655f92d718f01f147ba1c7c67844c7ba8b11492cd6"
@@ -309,7 +369,8 @@ static int test_digest(void)
"bb7bea635bcea6331315728fb57866370bf1ad5decbc56d28d47ce53f18376d9f5531551"
"7a976d52dd3f98b7025e0b3c513c6d17d40462cddb5406d693bbe859a136af5375b5dd6e"
"3478934b00aa6cd44aa7ae2cd0271d83fbab699b";
- if (keccak_g(1024, 1600 - 1024, 1600, "capitol's kvistfri broadly raping")) return -1;
+ if (keccak_g(1024, 1600 - 1024, 1600, "capitol's kvistfri broadly raping"))
+ return -1;
answer = "65070cdd6f91c0aadcfc470895a2606c828bce7ce3fa723418c9013de92253515713cce8"
"d2098be1c82df40b40e375549c0eeb655f92d718f01f147ba1c7c67844c7ba8b11492cd6"
@@ -317,7 +378,8 @@ static int test_digest(void)
"bb7bea635bcea6331315728fb57866370bf1ad5decbc56d28d47ce53f18376d9f5531551"
"7a976d52dd3f98b7025e0b3c513c6d17d40462cddb5406d693bbe859a136af5375b5dd6e"
"3478934b00aa6cd44aa7ae2cd0271d83fbab699b9c";
- if (keccak_g(1024, 1600 - 1024, 1608, "capitol's kvistfri broadly raping")) return -1;
+ if (keccak_g(1024, 1600 - 1024, 1608, "capitol's kvistfri broadly raping"))
+ return -1;
answer = "65070cdd6f91c0aadcfc470895a2606c828bce7ce3fa723418c9013de92253515713cce8"
"d2098be1c82df40b40e375549c0eeb655f92d718f01f147ba1c7c67844c7ba8b11492cd6"
@@ -331,34 +393,44 @@ static int test_digest(void)
"a9f9ae4232f313740b4fb787545dc19e7778f7082b3fa5824d2400c012be1a6c5ade7149"
"e452d310752fa9ebb964ab36fde0c8f46f47a0e2c9b20f24e3cca904bbedaa7ea176f662"
"33cd2d95";
- if (keccak_g(1024, 1600 - 1024, 3200, "capitol's kvistfri broadly raping")) return -1;
+ if (keccak_g(1024, 1600 - 1024, 3200, "capitol's kvistfri broadly raping"))
+ return -1;
answer = "65070cdd6f91c0aadcfc470895a2606c828bce7ce3fa723418c9013de9225351";
- if (keccak_g(1024, 1600 - 1024, 256, "capitol's kvistfri broadly raping")) return -1;
+ if (keccak_g(1024, 1600 - 1024, 256, "capitol's kvistfri broadly raping"))
+ return -1;
answer = "e6f86ebc15b962f73f36f36fc8a84c3ae84b1c1023bfd4c5f1829389135aecc3";
- if (keccak_g(512, 1600 - 512, 256, "capitol's kvistfri broadly raping")) return -1;
+ if (keccak_g(512, 1600 - 512, 256, "capitol's kvistfri broadly raping"))
+ return -1;
answer = "420b97fc88962c87ec2adaa8f48d74d9ff4ea7ae7d691f9c33b8713ca1d3d573";
- if (keccak_g(256, 1600 - 256, 256, "capitol's kvistfri broadly raping")) return -1;
+ if (keccak_g(256, 1600 - 256, 256, "capitol's kvistfri broadly raping"))
+ return -1;
answer = "524790afbe4706d938b6f753e14104f556890e2a415e211b0564d60499db0333";
- if (keccak_g(512, 800 - 512, 256, "capitol's kvistfri broadly raping")) return -1;
+ if (keccak_g(512, 800 - 512, 256, "capitol's kvistfri broadly raping"))
+ return -1;
answer = "04a6b4ad08b3018eefba0fb756272d949ac0f71c26f836d31dd13b28b884aa0f";
- if (keccak_g(256, 800 - 256, 256, "capitol's kvistfri broadly raping")) return -1;
+ if (keccak_g(256, 800 - 256, 256, "capitol's kvistfri broadly raping"))
+ return -1;
answer = "d56f547791225e54460e6274ed31e57b7085820c11d65f1f322a16a3352c85ed";
- if (keccak_g(256, 400 - 256, 256, "capitol's kvistfri broadly raping")) return -1;
+ if (keccak_g(256, 400 - 256, 256, "capitol's kvistfri broadly raping"))
+ return -1;
answer = "ceec066a57b9b31a5a0661df7bafec4183a26d0ed81e50bc958471f84fa347a7";
- if (keccak_g(128, 400 - 128, 256, "capitol's kvistfri broadly raping")) return -1;
+ if (keccak_g(128, 400 - 128, 256, "capitol's kvistfri broadly raping"))
+ return -1;
answer = "b18f679c7105a72a993f70fa5adb3f17ef7ccffaffb4dc0f6fed74aa2f565194";
- if (keccak_g(128, 200 - 128, 256, "capitol's kvistfri broadly raping")) return -1;
+ if (keccak_g(128, 200 - 128, 256, "capitol's kvistfri broadly raping"))
+ return -1;
answer = "9b845c1ecc2b1b3a48ba42ef29ccc4b348da8ab15074a870d8e799ca33c15e4b";
- if (keccak_g(64, 200 - 64, 256, "capitol's kvistfri broadly raping")) return -1;
+ if (keccak_g(64, 200 - 64, 256, "capitol's kvistfri broadly raping"))
+ return -1;
printf("\n");
@@ -388,7 +460,7 @@ test_update_case(const struct libkeccak_spec *restrict spec, const char *restric
const char *restrict msg, const char *restrict expected_answer)
{
struct libkeccak_state state;
- char *restrict hashsum;
+ unsigned char *restrict hashsum;
char *restrict hexsum;
int ok;
@@ -435,7 +507,8 @@ test_update_case(const struct libkeccak_spec *restrict spec, const char *restric
*
* @return Zero on success, -1 on error
*/
-static int test_update(void)
+static int
+test_update(void)
{
#define sha3(output, message)\
(printf(" Testing SHA3-"#output"(%s): ", #message),\
@@ -443,40 +516,50 @@ static int test_update(void)
test_update_case(&spec, LIBKECCAK_SHA3_SUFFIX, message, answer))
struct libkeccak_spec spec;
- const char* answer;
+ const char *answer;
printf("Testing libkeccak_update:\n");
answer = "22c8017ac8bcf65f59d1b7e92c9d4c6739d25e34ce5cb608b24ff096";
- if (sha3(224, "withdrew hypothesis snakebird qmc2")) return -1;
+ if (sha3(224, "withdrew hypothesis snakebird qmc2"))
+ return -1;
answer = "43808dde2662143dc4eed5dac5e98c74b06711829f02a3b121bd74f3";
- if (sha3(224, "intensifierat sturdiness perl-image-exiftool vingla")) return -1;
+ if (sha3(224, "intensifierat sturdiness perl-image-exiftool vingla"))
+ return -1;
answer = "d32b4ac86065774dee5eb5cdd2f67b4e86501086d7373884e8b20a36";
- if (sha3(224, "timjan avogadro uppdriven lib32-llvm-amdgpu-snapshot")) return -1;
+ if (sha3(224, "timjan avogadro uppdriven lib32-llvm-amdgpu-snapshot"))
+ return -1;
answer = "efbd76d45bfa952485148f8ad46143897f17c27ffdc8eb7287f9353b";
- if (sha3(224, "grilo-plugins auditorium tull dissimilarity's")) return -1;
+ if (sha3(224, "grilo-plugins auditorium tull dissimilarity's"))
+ return -1;
answer = "6705aa36ecf58f333e0e6364ac1d0b7931d402e13282127cfd6f876c";
- if (sha3(224, "royalty tt yellowstone deficiencies")) return -1;
+ if (sha3(224, "royalty tt yellowstone deficiencies"))
+ return -1;
answer = "803a0ff09dda0df306e483a9f91b20a3dbbf9c2ebb8d0a3b28f3b9e0";
- if (sha3(224, "kdegames-kdiamond tunisisk occurrence's outtalad")) return -1;
+ if (sha3(224, "kdegames-kdiamond tunisisk occurrence's outtalad"))
+ return -1;
answer = "a64779aca943a6aef1d2e7c9a0f4e997f4dabd1f77112a22121d3ed5";
- if (sha3(224, "chevalier slat's spindel representations")) return -1;
+ if (sha3(224, "chevalier slat's spindel representations"))
+ return -1;
answer = "f0a3e0587af7723f0aa4719059d3f5107115a5b3667cd5209cc4d867";
- if (sha3(224, "archery lexicographical equine veered")) return -1;
+ if (sha3(224, "archery lexicographical equine veered"))
+ return -1;
answer = "312e7e3c6403ab1a086155fb9a52b22a3d0d257876afd2b93fb7272e";
- if (sha3(224, "splay washbasin opposing there")) return -1;
+ if (sha3(224, "splay washbasin opposing there"))
+ return -1;
answer = "270ba05b764221ff5b5d94adfb4fdb1f36f07fe7c438904a5f3df071";
- if (sha3(224, "faktum desist thundered klen")) return -1;
+ if (sha3(224, "faktum desist thundered klen"))
+ return -1;
printf("\n");
@@ -499,17 +582,20 @@ static int test_update(void)
* @param expected_answer The hashum we expect, must be in lowercase hexadecimal
* @return Zero on success, -1 on error
*/
-static int test_squeeze_case(struct libkeccak_state *restrict state, const struct libkeccak_spec *restrict spec,
- long fast_squeezes, long squeezes, int fast_digest, char* restrict hashsum,
- char *restrict hexsum, const char *restrict expected_answer)
+static int
+test_squeeze_case(struct libkeccak_state *restrict state, const struct libkeccak_spec *restrict spec,
+ long int fast_squeezes, long int squeezes, int fast_digest, void *restrict hashsum,
+ char *restrict hexsum, const char *restrict expected_answer)
{
#define message "withdrew hypothesis snakebird qmc2"
- long i;
+ long int i;
int ok;
libkeccak_state_reset(state);
- if (libkeccak_digest(state, message, strlen(message), 0, LIBKECCAK_SHA3_SUFFIX, fast_digest ? NULL : hashsum))
- return perror("libkeccak_digest"), -1;
+ if (libkeccak_digest(state, message, strlen(message), 0, LIBKECCAK_SHA3_SUFFIX, fast_digest ? NULL : hashsum)) {
+ perror("libkeccak_digest");
+ return -1;
+ }
libkeccak_fast_squeeze(state, fast_squeezes);
for (i = fast_squeezes; i < squeezes; i++)
@@ -544,7 +630,7 @@ test_squeeze(void)
struct libkeccak_spec spec;
struct libkeccak_state state;
- char *restrict hashsum;
+ unsigned char *restrict hashsum;
char *restrict hexsum;
libkeccak_spec_sha3(&spec, 224);
@@ -617,7 +703,7 @@ test_file(const struct libkeccak_spec *restrict spec, const char *restrict suffi
const char *restrict filename, const char *restrict expected_answer)
{
struct libkeccak_state state;
- char *restrict hashsum;
+ unsigned char *restrict hashsum;
char *restrict hexsum;
int ok, fd;
@@ -674,8 +760,10 @@ main(void)
struct libkeccak_spec spec;
libkeccak_generalised_spec_initialise(&gspec);
- if (libkeccak_degeneralise_spec(&gspec, &spec))
- return printf("libkeccak_degeneralise_spec failed with all members at automatic.\n"), 1;
+ if (libkeccak_degeneralise_spec(&gspec, &spec)) {
+ printf("libkeccak_degeneralise_spec failed with all members at automatic.\n");
+ return 1;
+ }
printf("Resolution of default specification:\n");
printf(" bitrate: %li\n", gspec.bitrate);
@@ -683,18 +771,22 @@ main(void)
printf(" output: %li\n", gspec.output);
printf(" state size: %li\n", gspec.state_size);
printf(" word size: %li\n", gspec.word_size);
- if (gspec.word_size * 25 != gspec.state_size) return printf("Invalid information\n"), 1;
- if (gspec.bitrate + gspec.capacity != gspec.state_size) return printf("Invalid information\n"), 1;
- if (gspec.state_size != 1600) return printf("Incorrect information\n"), 1;
- if (gspec.bitrate != gspec.output * 2) return printf("Incorrect information\n"), 1;
- if (gspec.output != 512) return printf("Incorrect information\n"), 1;
+
+ if (gspec.word_size * 25 != gspec.state_size ||
+ gspec.bitrate + gspec.capacity != gspec.state_size) {
+ printf("Invalid information\n");
+ return 1;
+ }
+ if (gspec.state_size != 1600 ||
+ gspec.bitrate != gspec.output * 2 ||
+ gspec.output != 512) {
+ printf("Incorrect information\n");
+ return 1;
+ }
printf("\n");
- if (test_hex()) return 1;
- if (test_state(&spec)) return 1;
- if (test_digest()) return 1;
- if (test_update()) return 1;
- if (test_squeeze()) return 1;
+ if (test_hex() || test_state(&spec) || test_digest() || test_update() || test_squeeze())
+ return 1;
if (test_file(&spec, LIBKECCAK_SHA3_SUFFIX, ".testfile",
"a95484492e9ade0f1d28f872d197ff45d891e85e78f918643f41d524c5d6ab0f"