mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
util.uuid: Take random byte directly instead of the low bits from the ascii value of a hex nibble
This commit is contained in:
parent
3937d88358
commit
c515c93724
1 changed files with 1 additions and 1 deletions
|
@ -16,7 +16,7 @@ local function get_nibbles(n)
|
||||||
end
|
end
|
||||||
|
|
||||||
local function get_twobits()
|
local function get_twobits()
|
||||||
return ("%x"):format(get_nibbles(1):byte() % 4 + 8);
|
return ("%x"):format(random_bytes(1):byte() % 4 + 8);
|
||||||
end
|
end
|
||||||
|
|
||||||
local function generate()
|
local function generate()
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue