aboutsummaryrefslogtreecommitdiff
path: root/src/crypto.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/crypto.h')
-rw-r--r--src/crypto.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/crypto.h b/src/crypto.h
index eff9ffe..0bee9a3 100644
--- a/src/crypto.h
+++ b/src/crypto.h
@@ -3,6 +3,8 @@
#include "hash/md5.h"
#include "hash/sha01.h"
#include "hash/sha2xx.h"
+#include "hash/pearson.h"
+#include "hash/xxh.h"
#include "encode/uuencode.h"
#include "encode/base64.h"
@@ -16,6 +18,10 @@ static const luaL_Reg crypto_function_list [] = {
{"sha1",l_sha1},
{"sha256",l_sha256},
{"sha224",l_sha224},
+ {"setpearson",l_setpearson},
+ {"pearson",l_pearson},
+ {"xxh64",l_xxh64},
+ {"xxh32",l_xxh32},
{"uuencode",l_uuencode},
{"uudecode",l_uudecode},