Guid does not generate unique IDs

[] [] [] [] [] [] []

Symptom
Guid does not generate unique IDs
Other terms
GUID, unique, generate, IDs
Reason and Prerequisites
The SecureRandom used in the GUID generator uses a specific seed (the system long time hashed (XOR-ed) with the 32-bit hashcode of a newly created object), which produces only 32-bit seed instead of the 64-bit expected by the SecureRandom generator.
This is the [...]