summaryrefslogtreecommitdiff
path: root/Build/source/texk/web2c/luatexdir/luamd5/md5.h
diff options
context:
space:
mode:
Diffstat (limited to 'Build/source/texk/web2c/luatexdir/luamd5/md5.h')
-rw-r--r--Build/source/texk/web2c/luatexdir/luamd5/md5.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/Build/source/texk/web2c/luatexdir/luamd5/md5.h b/Build/source/texk/web2c/luatexdir/luamd5/md5.h
new file mode 100644
index 00000000000..80d43f72687
--- /dev/null
+++ b/Build/source/texk/web2c/luatexdir/luamd5/md5.h
@@ -0,0 +1,20 @@
+/**
+* $Id: md5.h,v 1.2 2003/04/28 16:25:44 roberto Exp $
+* Cryptographic module for Lua.
+* @author Roberto Ierusalimschy
+*/
+
+
+#ifndef md5_h
+#define md5_h
+
+#include <lua.h>
+
+
+#define HASHSIZE 16
+
+void md5 (const char *message, long len, char *output);
+int luaopen_md5 (lua_State *L);
+
+
+#endif