X-Git-Url: http://mj.ucw.cz/gitweb/?a=blobdiff_plain;ds=inline;f=ucw%2Fmd5.h;h=7d9abeba9ebf785e711df241b704d9c7126f83ab;hb=ec6703bb4d58e504fde8ea8429f9b26ab6632696;hp=0d771954316608a0c1bcbb5acc48ad7ec60d8369;hpb=0192d9f3a127c82b32131d26ed9b5fb5a90db723;p=libucw.git diff --git a/ucw/md5.h b/ucw/md5.h index 0d771954..7d9abeba 100644 --- a/ucw/md5.h +++ b/ucw/md5.h @@ -33,7 +33,7 @@ void md5_init(md5_context *context); /** Initialize the MD5 hashing algorithm in * as if you concatenated all the data together and fed them here all at * once. */ -void md5_update(md5_context *context, const byte *buf, uns len); +void md5_update(md5_context *context, const byte *buf, uint len); /** * Call this after the last @md5_update(). It will terminate the * algorithm and return a pointer to the result. @@ -66,7 +66,7 @@ void md5_transform(u32 buf[4], const u32 in[16]); * md5_update(&c, buffer, length); * memcpy(outbuf, md5_final(&c), MD5_SIZE); */ -void md5_hash_buffer(byte *outbuf, const byte *buffer, uns length); +void md5_hash_buffer(byte *outbuf, const byte *buffer, uint length); #define MD5_HEX_SIZE 33 /** How many bytes a string buffer for MD5 in hexadecimal format should have. **/ #define MD5_SIZE 16 /** Number of bytes the MD5 hash takes in the binary form. **/