X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=blobdiff_plain;f=sha1.c;h=0202ed3b30e86bf416281d5810631c991497d773;hb=b073e347cce9f17f137cbd961a36c75b30a22148;hp=7b09f6efb48cbc0c4b99fbd2637e820f51e76ca3;hpb=389070fed67552c613ce5afd3cdb436f8f8c538f;p=secnet.git diff --git a/sha1.c b/sha1.c index 7b09f6e..0202ed3 100644 --- a/sha1.c +++ b/sha1.c @@ -288,13 +288,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; @@ -329,7 +329,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;