X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=secnet.git;a=blobdiff_plain;f=sha1.c;h=4cc63b5c57f0e9b44f4c3b52c6d63fe92c5f0773;hp=c378a9d5aa80082b4ff438e7a95ac288b7850a8b;hb=98208aeb56256dfc919077a00b10328be466759c;hpb=3454dce4c6909648b711a59b57c5a527036b2a8e diff --git a/sha1.c b/sha1.c index c378a9d..4cc63b5 100644 --- a/sha1.c +++ b/sha1.c @@ -2,6 +2,7 @@ SHA-1 in C By Steve Reid 100% Public Domain +[I interpet this as a blanket permision -iwj.] Note: parts of this file have been removed or modified to work in secnet. Instead of using this file in new projects, I suggest you use the @@ -59,7 +60,9 @@ By Saul Kravitz Still 100% PD Modified to run on Compaq Alpha hardware. - +----------------- +(Further modifications as part of secnet. See git history for full details. + - Ian Jackson et al) */ /* @@ -97,9 +100,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 */ @@ -288,13 +291,13 @@ static void *sha1_init(void) { SHA1_CTX *ctx; - ctx=safe_malloc(sizeof(*ctx),"sha1_init"); + NEW(ctx); SHA1Init(ctx); return ctx; } -static void sha1_update(void *sst, uint8_t const *buf, uint32_t len) +static void sha1_update(void *sst, const void *buf, int32_t len) { SHA1_CTX *ctx=sst; @@ -314,12 +317,11 @@ struct sha1 { struct hash_if ops; }; -init_module sha1_module; 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, @@ -330,7 +332,7 @@ void sha1_module(dict_t *dict) uint8_t digest[20]; int i; - st=safe_malloc(sizeof(*st),"sha1_module"); + NEW(st); st->cl.description="sha1"; st->cl.type=CL_HASH; st->cl.apply=NULL; @@ -347,7 +349,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"); } } }