mirror of
https://git.minetest.land/Mineclonia/Mineclonia.git
synced 2024-11-27 13:02:59 +00:00
Truncate groupcaps_hash to 8 Base64 digits
This commit is contained in:
parent
b50addac55
commit
576dde1dd5
1 changed files with 1 additions and 1 deletions
|
@ -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 a new issue