Skip to content

Namespace

RFC 4122 predefined namespace UUIDs for v3/v5 generation.

Constants

ConstantValue
Namespace.dns6ba7b810-9dad-11d1-80b4-00c04fd430c8
Namespace.url6ba7b811-9dad-11d1-80b4-00c04fd430c8
Namespace.oid6ba7b812-9dad-11d1-80b4-00c04fd430c8
Namespace.x5006ba7b814-9dad-11d1-80b4-00c04fd430c8

Usage

zig
const id_dns = uuid.UUID.v3(uuid.Namespace.dns, "www.example.com");
const id_url = uuid.UUID.v5(uuid.Namespace.url, "www.example.com");

Released under the MIT License.