X-Git-Url: https://git.enpas.org/?a=blobdiff_plain;f=util%2Fuuid.lua;h=e10fc0f72290a996c09560632e4c94603dff74fb;hb=59224f73ca26a00292f127e081af3cf47f57ae1f;hp=4caaef1ba1a30304a94fdbc9ba4586ca88aaedba;hpb=8a6a7668b61b7c7a9a533f407e2610e90aa8a1a5;p=prosody.git diff --git a/util/uuid.lua b/util/uuid.lua index 4caaef1b..e10fc0f7 100644 --- a/util/uuid.lua +++ b/util/uuid.lua @@ -1,18 +1,32 @@ --- Prosody IM v0.3 --- Copyright (C) 2008 Matthew Wild --- Copyright (C) 2008 Waqas Hussain --- +-- Prosody IM +-- Copyright (C) 2008-2010 Matthew Wild +-- Copyright (C) 2008-2010 Waqas Hussain +-- -- This project is MIT/X11 licensed. Please see the -- COPYING file in the source package for more information. -- +local random = require "util.random"; +local random_bytes = random.bytes; +local hex = require "util.hex".to; +local m_ceil = math.ceil; +local function get_nibbles(n) + return hex(random_bytes(m_ceil(n/2))):sub(1, n); +end -local m_random = math.random; -module "uuid" +local function get_twobits() + return ("%x"):format(get_nibbles(1):byte() % 4 + 8); +end -function generate() - return m_random(0, 99999999); +local function generate() + -- generate RFC 4122 complaint UUIDs (version 4 - random) + return get_nibbles(8).."-"..get_nibbles(4).."-4"..get_nibbles(3).."-"..(get_twobits())..get_nibbles(3).."-"..get_nibbles(12); end -return _M; \ No newline at end of file +return { + get_nibbles=get_nibbles; + generate = generate ; + -- COMPAT + seed = random.seed; +};