Index: include/libwapcaplet/libwapcaplet.h
===================================================================
--- include/libwapcaplet/libwapcaplet.h	(revision 7836)
+++ include/libwapcaplet/libwapcaplet.h	(working copy)
@@ -126,5 +126,10 @@
  */
 extern size_t lwc_string_length(lwc_string *str);
 
+/**
+ * Retrieve the hask value of the string.
+ *
+ */
+extern uint32_t lwc_string_hash_value(lwc_string *str);
 
 #endif /* libwapcaplet_h_ */
Index: src/libwapcaplet.c
===================================================================
--- src/libwapcaplet.c	(revision 7836)
+++ src/libwapcaplet.c	(working copy)
@@ -342,3 +342,10 @@
         
         return str->len;
 }
+
+uint32_t lwc_string_hash_value(lwc_string *str)
+{
+	assert(str);
+
+	return str->hash;
+}
