diff options
| author | ame <[email protected]> | 2023-11-03 19:16:30 -0500 |
|---|---|---|
| committer | ame <[email protected]> | 2023-11-03 19:16:30 -0500 |
| commit | 78e72d66085f27719a6f23fc22e58dfc8a0f31e6 (patch) | |
| tree | ebf210eebe391fa8e30497243b42fdd1dffd61a8 /src/crypto.h | |
| parent | c1f74d0ca45120e6dd44dbd118c21243e997af5a (diff) | |
pearson & xxhash
Diffstat (limited to 'src/crypto.h')
| -rw-r--r-- | src/crypto.h | 6 |
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}, |
