Skip to content

Commit

Permalink
Improve UUID generation method (#514)
Browse files Browse the repository at this point in the history
  • Loading branch information
leonardobuares authored Jun 20, 2024
1 parent 697ba26 commit b29a126
Showing 1 changed file with 7 additions and 24 deletions.
31 changes: 7 additions & 24 deletions src/MercadoPago/Client/MercadoPagoClient.php
Original file line number Diff line number Diff line change
Expand Up @@ -152,30 +152,13 @@ private function addConnectionTimeout(?RequestOptions $request_options = null):
}


private function generateUUID()
private function generateUUID(): string
{
return sprintf(
'%04x%04x-%04x-%04x-%04x-%04x%04x%04x',
// 32 bits for "time_low"
mt_rand(0, 0xffff),
mt_rand(0, 0xffff),

// 16 bits for "time_mid"
mt_rand(0, 0xffff),

// 16 bits for "time_hi_and_version",
// four most significant bits holds version number 4
mt_rand(0, 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
mt_rand(0, 0x3fff) | 0x8000,

// 48 bits for "node"
mt_rand(0, 0xffff),
mt_rand(0, 0xffff),
mt_rand(0, 0xffff)
);
$data = random_bytes(16);

$data[6] = chr(ord($data[6]) & 0x0f | 0x40); // set version to 0100
$data[8] = chr(ord($data[8]) & 0x3f | 0x80); // set bits 6-7 to 10

return vsprintf('%s%s-%s-%s-%s-%s%s%s', str_split(bin2hex($data), 4));
}
}

0 comments on commit b29a126

Please sign in to comment.