X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=lib%2Fuuid.php;h=233efbfb2fa9ea930c5b2646752933dbdffe7fe6;hb=13c331fa8152f11a811d2ff66210b3298bc21ada;hp=386d0e2121fbbdc976e6b5ee1ffa0153c664e2f0;hpb=f078c19f09e067408d1e300dc9cecab1d4d8df62;p=quix0rs-gnu-social.git diff --git a/lib/uuid.php b/lib/uuid.php index 386d0e2121..233efbfb2f 100644 --- a/lib/uuid.php +++ b/lib/uuid.php @@ -93,18 +93,18 @@ class UUID { return sprintf('%s-%s-%04x-%04x-%s', // 32 bits for "time_low" - common_good_rand(4), + common_random_hexstr(4), // 16 bits for "time_mid" - common_good_rand(2), + common_random_hexstr(2), // 16 bits for "time_hi_and_version", // four most significant bits holds version number 4 - (hexdec(common_good_rand(2)) & 0x0fff) | 0x4000, + (hexdec(common_random_hexstr(2)) & 0x0fff) | 0x4000, // 16 bits, 8 bits for "clk_seq_hi_res", // 8 bits for "clk_seq_low", // two most significant bits holds zero and one // for variant DCE1.1 - (hexdec(common_good_rand(2)) & 0x3fff) | 0x8000, + (hexdec(common_random_hexstr(2)) & 0x3fff) | 0x8000, // 48 bits for "node" - common_good_rand(6)); + common_random_hexstr(6)); } }