beta-0.89.2
[luatex.git] / source / texk / web2c / luatexdir / luamd5 / luamd5.h
blobc0470c6439dff31c8914c9d8fd9d81001c45f548
1 /**
2 * $Id: md5.h,v 1.2 2003/04/28 16:25:44 roberto Exp $
3 * Cryptographic module for Lua.
4 * @author Roberto Ierusalimschy
5 */
8 #ifndef luamd5_h
9 #define luamd5_h
11 #include <lua.h>
14 #define HASHSIZE 16
16 void md5 (const char *message, long len, char *output);
17 int luaopen_md5 (lua_State *L);
20 #endif