From c3d9a4d44c1c6930fac277d20c6ea48801e39a18 Mon Sep 17 00:00:00 2001 From: ame Date: Fri, 3 Nov 2023 19:16:30 -0500 Subject: pearson & xxhash --- src/crypto.h | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'src/crypto.h') 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}, -- cgit v1.2.3