Categorygithub.com/hashicorp/go-uuid
modulepackage
1.0.3
Repository: https://github.com/hashicorp/go-uuid.git
Documentation: pkg.go.dev

# README

uuid Build Status

Generates UUID-format strings using high quality, purely random bytes. It is not intended to be RFC compliant, merely to use a well-understood string representation of a 128-bit value. It can also parse UUID-format strings into their component bytes.

Documentation

The full documentation is available on Godoc.

# Functions

GenerateRandomBytes is used to generate random bytes of given size.
GenerateRandomBytesWithReader is used to generate random bytes of given size read from a given reader.
GenerateUUID is used to generate a random UUID.
GenerateUUIDWithReader is used to generate a random UUID with a given Reader.