mirror of
https://git.minetest.land/MineClone2/MineClone2.git
synced 2024-11-30 06:43:45 +01:00
Truncate groupcaps_hash to 8 Base64 digits
parent
e77473e800
commit
5193730652
@ -411,5 +411,5 @@ function mcl_util.hash(value)
|
||||
-- minetest.get_password_hash is quite fast, even if it uses a
|
||||
-- cryptographic hashing function (SHA-1). It is written in C++ and it
|
||||
-- is probably hard to write a faster hashing function in Lua.
|
||||
return minetest.get_password_hash("ryvnf", minetest.serialize(value))
|
||||
return string.sub(minetest.get_password_hash("ryvnf", minetest.serialize(value)), 1, 8)
|
||||
end
|
||||
|
Loading…
Reference in New Issue
Block a user