]> mj.ucw.cz Git - libucw.git/blobdiff - ucw/md5.c
ABI tools: Better reporting of missing files
[libucw.git] / ucw / md5.c
index 3f8384ba8cc43036826018ddbcda29110b7fee2d..d244356d89ddd01e7df91ef8f545f976eaf87197 100644 (file)
--- a/ucw/md5.c
+++ b/ucw/md5.c
 #ifdef CPU_LITTLE_ENDIAN
 #define byteReverse(buf, len)  /* Nothing */
 #else
-void byteReverse(byte *buf, uns longs);
+void byteReverse(byte *buf, uint longs);
 
 /*
  * Note: this code is harmless on little-endian machines.
  */
-void byteReverse(byte *buf, uns longs)
+void byteReverse(byte *buf, uint longs)
 {
   u32 t;
   do {
-    t = (u32) ((uns) buf[3] << 8 | buf[2]) << 16 |
-      ((uns) buf[1] << 8 | buf[0]);
+    t = (u32) ((uint) buf[3] << 8 | buf[2]) << 16 |
+      ((uint) buf[1] << 8 | buf[0]);
     *(u32 *) buf = t;
     buf += 4;
   } while (--longs);
@@ -59,7 +59,7 @@ void md5_init(md5_context *ctx)
  * Update context to reflect the concatenation of another buffer full
  * of bytes.
  */
-void md5_update(md5_context *ctx, const byte *buf, uns len)
+void md5_update(md5_context *ctx, const byte *buf, uint len)
 {
   u32 t;
 
@@ -109,7 +109,7 @@ void md5_update(md5_context *ctx, const byte *buf, uns len)
  */
 byte *md5_final(md5_context *ctx)
 {
-  uns count;
+  uint count;
   byte *p;
 
   /* Compute number of bytes mod 64 */
@@ -245,7 +245,7 @@ void md5_transform(u32 buf[4], u32 const in[16])
   buf[3] += d;
 }
 
-void md5_hash_buffer(byte *outbuf, const byte *buffer, uns length)
+void md5_hash_buffer(byte *outbuf, const byte *buffer, uint length)
 {
   md5_context c;
   md5_init(&c);