Skip to content

Commit

Permalink
[Uid] work around slow generation of v4 UUIDs
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolas-grekas committed Mar 15, 2020
1 parent 6f2d9b6 commit baac8f0
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion UuidV4.php
Expand Up @@ -25,7 +25,12 @@ class UuidV4 extends Uuid
public function __construct(string $uuid = null)
{
if (null === $uuid) {
$this->uuid = uuid_create(static::TYPE);
$uuid = random_bytes(16);
$uuid[6] = $uuid[6] & "\x0F" | "\x4F";
$uuid[8] = $uuid[8] & "\x3F" | "\x80";
$uuid = bin2hex($uuid);

$this->uuid = substr($uuid, 0, 8).'-'.substr($uuid, 8, 4).'-'.substr($uuid, 12, 4).'-'.substr($uuid, 16, 4).'-'.substr($uuid, 20, 12);
} else {
parent::__construct($uuid);
}
Expand Down

0 comments on commit baac8f0

Please sign in to comment.