md5.h 305 B

123456789101112131415161718192021
  1. /**
  2. * $Id: md5.h,v 1.2 2006/03/03 15:04:49 tomas Exp $
  3. * Cryptographic module for Lua.
  4. * @author Roberto Ierusalimschy
  5. */
  6. #ifndef md5_h
  7. #define md5_h
  8. #include <lua.h>
  9. #define HASHSIZE 16
  10. void md5 (const char *message, long len, char *output);
  11. int luaopen_md5_core (lua_State *L);
  12. #endif