back to home

satori / go.uuid

UUID package for Go

4,901 stars
597 forks
44 issues
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.

Source files are only loaded when you start an analysis to optimize performance.

Embed this Badge

Showcase RepoMind's analysis directly in your repository's README.

[![Analyzed by RepoMind](https://img.shields.io/badge/Analyzed%20by-RepoMind-4F46E5?style=for-the-badge)](https://repomind.in/repo/satori/go.uuid)
Preview:Analyzed by RepoMind

Repository Overview (README excerpt)

Crawler view

UUID 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.