aboutsummaryrefslogtreecommitdiff
path: root/src/crypto.h
diff options
context:
space:
mode:
authorame <[email protected]>2023-10-18 16:30:38 -0500
committerame <[email protected]>2023-10-18 16:30:38 -0500
commit034f54b14416dd411fbd204f8b5465b8bc462b76 (patch)
tree6a551b9b4633f2570159eeb83a8f8ac9e1019100 /src/crypto.h
parentb137acbcb983359568c0b9b2851ef7bbba9617b7 (diff)
md5 and sorting improvments
Diffstat (limited to 'src/crypto.h')
-rw-r--r--src/crypto.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/crypto.h b/src/crypto.h
new file mode 100644
index 0000000..a62add2
--- /dev/null
+++ b/src/crypto.h
@@ -0,0 +1,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}
+};
+