aboutsummaryrefslogtreecommitdiff
path: root/src/crypto.h
blob: be0683e17d0e0069a122c2862b111968709827ed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include "lua.h"
#include "i_util.h"
#include "hash/md5.h"
#include "hash/sha01.h"

unsigned i_lr(unsigned, unsigned);

static const luaL_Reg crypto_function_list [] = {
      {"md5",l_md5},
      {"sha0",l_sha0},
      {"sha1",l_sha1},
 
      {NULL,NULL}
};