X-Git-Url: https://git.distorted.org.uk/~mdw/catacomb/blobdiff_plain/1aaccf40b93719fd3df7cc89e023b9bb48b358b6..bd6d65e32b835551677456bf286d09ced6859882:/pub/x448.c diff --git a/pub/x448.c b/pub/x448.c index 6bef9dd3..70ec10f4 100644 --- a/pub/x448.c +++ b/pub/x448.c @@ -97,8 +97,8 @@ void x448(octet zz[X448_OUTSZ], #ifdef TEST_RIG +#include #include -#include #include #include "ct.h" @@ -118,7 +118,7 @@ static int vrf_x448(dstr dv[]) (const octet *)dv[0].buf, (const octet *)dv[1].buf); ct_remedy(dz.buf, dz.len); - if (memcmp(dz.buf, dv[2].buf, X448_OUTSZ) != 0) { + if (MEMCMP(dz.buf, !=, dv[2].buf, X448_OUTSZ)) { ok = 0; fprintf(stderr, "failed!"); fprintf(stderr, "\n\t k = "); type_hex.dump(&dv[0], stderr); @@ -153,7 +153,7 @@ static int vrf_mct(dstr dv[]) } memcpy(d.buf, k, d.len); - if (memcmp(d.buf, dv[3].buf, d.len) != 0) { + if (MEMCMP(d.buf, !=, dv[3].buf, d.len)) { ok = 0; fprintf(stderr, "failed..."); fprintf(stderr, "\n\tinitial k = "); type_hex.dump(&dv[0], stderr);