HomeServer/3rd/lua-md5/md5.h

21 lines
305 B
C
Raw Normal View History

2024-11-20 15:41:09 +08:00
/**
* $Id: md5.h,v 1.2 2006/03/03 15:04:49 tomas 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_core (lua_State *L);
#endif