X-Git-Url: https://git.distorted.org.uk/~mdw/secnet/blobdiff_plain/fe5e9cc422cd72526ccfceffbc7e5af8ac83b407..b3877445fa32f46d70057212cb38347ae1bf4955:/sha1.c diff --git a/sha1.c b/sha1.c index a90958b..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; @@ -314,7 +314,6 @@ struct sha1 { struct hash_if ops; }; -init_module sha1_module; void sha1_module(dict_t *dict) { struct sha1 *st; @@ -330,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;