mirror of
https://github.com/1bardesign/batteries.git
synced 2024-11-10 02:31:48 +00:00
uuid: Add a passed rng to uuid4
This commit is contained in:
parent
5f2e7b437d
commit
e630418372
4
uuid.lua
4
uuid.lua
@ -20,11 +20,11 @@ end
|
|||||||
local uuid4_template = "xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx"
|
local uuid4_template = "xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx"
|
||||||
|
|
||||||
--generate a UUID version 4 (random)
|
--generate a UUID version 4 (random)
|
||||||
function uuid.uuid4()
|
function uuid.uuid4(rng)
|
||||||
return uuid4_template:gsub("[xy]", function (c)
|
return uuid4_template:gsub("[xy]", function (c)
|
||||||
-- x should be 0x0-0xF, the single y should be 0x8-0xB
|
-- x should be 0x0-0xF, the single y should be 0x8-0xB
|
||||||
-- 4 should always just be 4 (denoting uuid version)
|
-- 4 should always just be 4 (denoting uuid version)
|
||||||
return string.format("%x", c == "x" and _random(0x0, 0xF) or _random(0x8, 0xB))
|
return string.format("%x", c == "x" and _random(0x0, 0xF, rng) or _random(0x8, 0xB, rng))
|
||||||
end)
|
end)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user