X-Git-Url: http://mj.ucw.cz/gitweb/?a=blobdiff_plain;ds=inline;f=ucw%2Fmd5.h;h=7d9abeba9ebf785e711df241b704d9c7126f83ab;hb=ec6703bb4d58e504fde8ea8429f9b26ab6632696;hp=75966cac6f75b82241b624074ff596e8315ab5e4;hpb=a4fe009d3366b0a3e119713b0ecc7fc0070efdfa;p=libucw.git diff --git a/ucw/md5.h b/ucw/md5.h index 75966cac..7d9abeba 100644 --- a/ucw/md5.h +++ b/ucw/md5.h @@ -7,6 +7,14 @@ #ifndef _UCW_MD5_H #define _UCW_MD5_H +#ifdef CONFIG_UCW_CLEAN_ABI +#define md5_final ucw_md5_final +#define md5_hash_buffer ucw_md5_hash_buffer +#define md5_init ucw_md5_init +#define md5_transform ucw_md5_transform +#define md5_update ucw_md5_update +#endif + /** * Internal MD5 hash state. * You should use it just as an opaque handle only. @@ -25,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. @@ -58,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. **/