summaryrefslogtreecommitdiff
path: root/Build/source/texk/web2c/luatexdir/luamd5/luamd5.h
diff options
context:
space:
mode:
authorTaco Hoekwater <taco@elvenkind.com>2010-04-04 13:55:46 +0000
committerTaco Hoekwater <taco@elvenkind.com>2010-04-04 13:55:46 +0000
commitf372862c42d234710b6057449b46818e63181c90 (patch)
treea9ebec66dd31ac37aed442502ebd1b9fe76245ec /Build/source/texk/web2c/luatexdir/luamd5/luamd5.h
parent2dad291ab056f30816e0aea61970f38033c2f6a5 (diff)
import luatex 0.60.0 (with small local changes, see luatexdir/ChangeLog)
and do an autoreconf git-svn-id: svn://tug.org/texlive/trunk@17680 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/web2c/luatexdir/luamd5/luamd5.h')
-rw-r--r--Build/source/texk/web2c/luatexdir/luamd5/luamd5.h20
1 files changed, 20 insertions, 0 deletions
diff --git a/Build/source/texk/web2c/luatexdir/luamd5/luamd5.h b/Build/source/texk/web2c/luatexdir/luamd5/luamd5.h
new file mode 100644
index 00000000000..c0470c6439d
--- /dev/null
+++ b/Build/source/texk/web2c/luatexdir/luamd5/luamd5.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 luamd5_h
+#define luamd5_h
+
+#include <lua.h>
+
+
+#define HASHSIZE 16
+
+void md5 (const char *message, long len, char *output);
+int luaopen_md5 (lua_State *L);
+
+
+#endif