1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 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