I need to generate a UUID for storage in a database. Can I generate UUID abstracts from Javascript in the client browser ( Here are some examples )?
Is there a security risk to do it this way? I understand that anyone can change the UUID before it is transferred to the server for storage. So I will need to check if they are unique completely unique before storing them in the database, but other than that, are there any other things to check?
(Sorry for my English, feel free to fix any grammar errors)
edit: To answer questions about why I would like to do this, this is because I can create a new object and its identifier in Javascript and add it to my view, and then make an AJAX server call to add it to the database . Thus, I do not need to download it from the database to find out what this primary identifier is.
security uuid
Mathieu pagΓ©
source share