You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the "generateUuid()" function, that is in the "Data.php" file, mt_rand function does not good for generate uuid and maybe create duplicate uuid. It's better to use random_int(),random_bytes(), or openssl_random_pseudo_bytes() instead.
In the "generateUuid()" function, that is in the "Data.php" file, mt_rand function does not good for generate uuid and maybe create duplicate uuid.
It's better to use random_int(),random_bytes(), or openssl_random_pseudo_bytes() instead.
https://www.php.net/manual/en/function.mt-rand.php
The text was updated successfully, but these errors were encountered: