satori / go.uuid
UUID package for Go
AI Architecture Analysis
This repository is indexed by RepoMind. By analyzing satori/go.uuid in our AI interface, you can instantly generate complete architecture diagrams, visualize control flows, and perform automated security audits across the entire codebase.
Our Agentic Context Augmented Generation (Agentic CAG) engine loads full source files into context on-demand, avoiding the fragmentation of traditional RAG systems. Ask questions about the architecture, dependencies, or specific features to see it in action.
Repository Overview (README excerpt)
Crawler viewUUID package for Go language This package provides pure Go implementation of Universally Unique Identifier (UUID). Supported both creation and parsing of UUIDs. With 100% test coverage and benchmarks out of box. Supported versions: • Version 1, based on timestamp and MAC address (RFC 4122) • Version 2, based on timestamp, MAC address and POSIX UID/GID (DCE 1.1) • Version 3, based on MD5 hashing (RFC 4122) • Version 4, based on random numbers (RFC 4122) • Version 5, based on SHA-1 hashing (RFC 4122) Installation Use the command: $ go get github.com/satori/go.uuid Requirements UUID package tested against Go >= 1.6. Example Documentation Documentation is hosted at GoDoc project. Links • RFC 4122 • DCE 1.1: Authentication and Security Services Copyright Copyright (C) 2013-2018 by Maxim Bublis . UUID package released under MIT License. See LICENSE for details.