X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=blobdiff_plain;f=sha1.c;h=a90958b47a33879b215cc4fd17b361102283452b;hb=32352d169d447952a4a1eab9a86fbb803e7950b4;hp=c378a9d5aa80082b4ff438e7a95ac288b7850a8b;hpb=3454dce4c6909648b711a59b57c5a527036b2a8e;p=secnet.git diff --git a/sha1.c b/sha1.c index c378a9d..a90958b 100644 --- a/sha1.c +++ b/sha1.c @@ -97,9 +97,9 @@ typedef unsigned long int uint32; #endif /* 0 */ /* Get types and defines from the secnet configuration */ -typedef int64_t int64; +/* typedef int64_t int64; */ typedef uint64_t uint64; -typedef int32_t int32; +/* typedef int32_t int32; */ typedef uint32_t uint32; /* #include */ /* prototype for exit() - JHB */ @@ -319,7 +319,7 @@ void sha1_module(dict_t *dict) { struct sha1 *st; void *ctx; - string_t testinput="abcdbcdecdefdefgefghfghigh" + cstring_t testinput="abcdbcdecdefdefgefghfghigh" "ijhijkijkljklmklmnlmnomnopnopq"; uint8_t expected[20]= { 0x84,0x98,0x3e,0x44, @@ -347,7 +347,7 @@ void sha1_module(dict_t *dict) sha1_final(ctx,digest); for (i=0; i<20; i++) { if (digest[i]!=expected[i]) { - fatal("sha1 module failed self-test\n"); + fatal("sha1 module failed self-test"); } } }