Would like to generate some random strings to be used as database keys.
Essentially these will be UUIDs, however they do not need to conform to any particular spec aside from the necessary 122-128 bits of randomness.
Most of the code will run in a browser. As I understand it, Javascript running with a browser cannot be trusted to properly seed its random number generator. Instead I was hoping to seed the random number generator with some random data from the server, then generate multiple "UUIDs" starting from that seed.
Is there a good random number generator that can be used for this purpose?