X-Git-Url: https://git.distorted.org.uk/~mdw/secnet/blobdiff_plain/389070fed67552c613ce5afd3cdb436f8f8c538f..86420bb75f19f628ffd2d8ff9964e59ed99e3187:/sha1.c diff --git a/sha1.c b/sha1.c index 7b09f6e..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) */ /* @@ -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; @@ -329,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;