X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=blobdiff_plain;f=sha1.c;h=f442e08c91033c805e4c2987810021d507c40525;hb=4a6ee8b677fd7addc97fc0d245f95ddde3b5f8e4;hp=4cc63b5c57f0e9b44f4c3b52c6d63fe92c5f0773;hpb=c215a4bc817daf7b5631236c3c7b6a509479b034;p=secnet.git diff --git a/sha1.c b/sha1.c index 4cc63b5..f442e08 100644 --- a/sha1.c +++ b/sha1.c @@ -78,6 +78,7 @@ A million repetitions of "a" /* #define SHA1HANDSOFF */ #include "secnet.h" +#include "util.h" #include #include @@ -287,14 +288,11 @@ unsigned char finalcount[8]; /*************************************************************/ /* Everything below here is the interface to secnet */ -static void *sha1_init(void) +static void sha1_init(void *sst) { - SHA1_CTX *ctx; + SHA1_CTX *ctx=sst; - NEW(ctx); SHA1Init(ctx); - - return ctx; } static void sha1_update(void *sst, const void *buf, int32_t len) @@ -309,7 +307,6 @@ static void sha1_final(void *sst, uint8_t *digest) SHA1_CTX *ctx=sst; SHA1Final(digest,ctx); - free(ctx); } struct sha1 { @@ -320,7 +317,6 @@ struct sha1 { void sha1_module(dict_t *dict) { struct sha1 *st; - void *ctx; cstring_t testinput="abcdbcdecdefdefgefghfghigh" "ijhijkijkljklmklmnlmnomnopnopq"; uint8_t expected[20]= @@ -337,16 +333,15 @@ void sha1_module(dict_t *dict) st->cl.type=CL_HASH; st->cl.apply=NULL; st->cl.interface=&st->ops; - st->ops.len=20; + st->ops.hlen=20; + st->ops.slen=sizeof(SHA1_CTX); st->ops.init=sha1_init; st->ops.update=sha1_update; st->ops.final=sha1_final; dict_add(dict,"sha1",new_closure(&st->cl)); - ctx=sha1_init(); - sha1_update(ctx,testinput,strlen(testinput)); - sha1_final(ctx,digest); + hash_hash(&st->ops,testinput,strlen(testinput),digest); for (i=0; i<20; i++) { if (digest[i]!=expected[i]) { fatal("sha1 module failed self-test");