Remove bitfield hack (solaris blows anyways).
[awesomized/libmemcached] / libhashkit / algorithm.c
index 3c486c77b6ed1e582aece524f2d08ea87e7005c7..e8f859e879cfe8ad67ec5666dffc20d9f5ccbc99 100644 (file)
@@ -59,3 +59,9 @@ uint32_t libhashkit_md5(const char *key, size_t key_length)
 {
   return hashkit_md5(key, key_length, NULL);
 }
+
+void libhashkit_md5_signature(const unsigned char *key, size_t length, unsigned char *result)
+{
+  md5_signature(key, (uint32_t)length, result);
+}
+