diff options
| author | ame <[email protected]> | 2024-03-13 16:03:10 -0500 |
|---|---|---|
| committer | ame <[email protected]> | 2024-03-13 16:03:10 -0500 |
| commit | cf36c993ba4bb931ecf9c84de41ab0bc5fc915e4 (patch) | |
| tree | 6e7f5619f468e5b4e34378def3e9f2960d909b38 /src/crypto.h | |
| parent | 74289579ac66890ef0d7df2a5ec5f15f8308b8cd (diff) | |
blake2{b,s} and maybe other stuff
Diffstat (limited to 'src/crypto.h')
| -rw-r--r-- | src/crypto.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/crypto.h b/src/crypto.h index e0a29b0..8fd83a5 100644 --- a/src/crypto.h +++ b/src/crypto.h @@ -25,6 +25,7 @@ #include "hash/sdbm.h" #include "hash/sha2-256.h" #include "hash/spookyhash.h" +#include "hash/blake2.h" #include "encode/uuencode.h" #include "encode/base64.h" @@ -55,7 +56,7 @@ static const luaL_Reg crypto_function_list [] = { {"spookyhash128_v1", l_spookyhash128_v1}, {"spookyhash128_v2", l_spookyhash128_v2}, {"spookyhash64_v1", l_spookyhash64_v1}, {"spookyhash64_v2", l_spookyhash64_v2}, {"spookyhash32_v1", l_spookyhash32_v1}, {"spookyhash32_v2", l_spookyhash32_v2}, - + {"blake2b", l_blake2b}, {"blake2s", l_blake2s}, {"uuencode",l_uuencode}, |
