mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +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
|
||||
|
||||
local function get_twobits()
|
||||
return ("%x"):format(get_nibbles(1):byte() % 4 + 8);
|
||||
return ("%x"):format(random_bytes(1):byte() % 4 + 8);
|
||||
end
|
||||
|
||||
local function generate()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue