aboutsummaryrefslogtreecommitdiff
path: root/src/crypto.h
blob: a62add284e2c761112b007bae11f429ea8bee035 (plain)
1
2
3
4
5
6
7
8
9
10
11
#include "lua.h"
#include "i_util.h"

int l_md5(lua_State*);

static const luaL_Reg crypto_function_list [] = {
      {"md5",l_md5},

      {NULL,NULL}
};