aboutsummaryrefslogtreecommitdiff
path: root/src/hash/md5.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/hash/md5.h')
-rw-r--r--src/hash/md5.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/hash/md5.h b/src/hash/md5.h
index 3bc7556..70161bd 100644
--- a/src/hash/md5.h
+++ b/src/hash/md5.h
@@ -1,3 +1,12 @@
#include "../lua.h"
+/**
+ * calculates a md5 of bytes
+ *
+ * @param {char*} input bytes
+ * @param {char[64]} output stream
+ * @return {void}
+*/
+void i_md5(char*,char*);
+
int l_md5(lua_State*);