f4b6a3 / uuid-creator

UUID Creator is a Java library for generating Universally Unique Identifiers.
MIT License
430 stars 44 forks source link

Add a fast method to generate random-based identifiers #74

Closed fabiolimace closed 2 years ago

fabiolimace commented 2 years ago

Implement a convenience method to generate quick random-based UUIDs.

UUID uuid = UuidCreator.getRandomBasedFast();

SplittableRandom will be employed by this method.

Security-sensitive applications that require a cryptographically strong pseudo-random generator should continue to use UuidCreator.getRandomBased().

fabiolimace commented 2 years ago

Released v5.2.0. 🎉