X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ian/git?p=secnet.git;a=blobdiff_plain;f=sha1.c;h=a0f26e8be6facdadfed882d1cf4dd65fd6da9523;hp=a90958b47a33879b215cc4fd17b361102283452b;hb=9b8369e07aeba5ed2c69fb4a7f74d07c8cebe015;hpb=fe5e9cc422cd72526ccfceffbc7e5af8ac83b407 diff --git a/sha1.c b/sha1.c index a90958b..a0f26e8 100644 --- a/sha1.c +++ b/sha1.c @@ -294,7 +294,7 @@ static void *sha1_init(void) 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;