generateUuid

Generates a Uuid instance by namespace and name applying SHA-1. It doesn't use any random source, so it will produce the same result for the same input values.

See RFC4122 sec 4.3


Generates a Uuid instance by input bytes applying SHA-1. It doesn't use any random source, so it will produce the same result for the same input values.

See RFC4122 sec 4.3

It is recommended to use generateUuid(namespace, name) instead while this function is more for java.util.UUID parity.