{"id":37214398,"url":"https://github.com/springrain/gouuid","last_synced_at":"2026-01-15T00:48:59.013Z","repository":{"id":57516562,"uuid":"245727636","full_name":"springrain/gouuid","owner":"springrain","description":"UUID package for Go  fix:https://github.com/satori/go.uuid/issues/100","archived":false,"fork":true,"pushed_at":"2020-03-08T00:33:24.000Z","size":110,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-08-15T10:32:19.089Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":null,"has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":"satori/go.uuid","license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/springrain.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2020-03-08T00:31:25.000Z","updated_at":"2020-03-08T00:34:58.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/springrain/gouuid","commit_stats":null,"previous_names":[],"tags_count":4,"template":false,"template_full_name":null,"purl":"pkg:github/springrain/gouuid","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/springrain%2Fgouuid","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/springrain%2Fgouuid/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/springrain%2Fgouuid/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/springrain%2Fgouuid/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/springrain","download_url":"https://codeload.github.com/springrain/gouuid/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/springrain%2Fgouuid/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28440486,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-15T00:34:46.850Z","status":"ssl_error","status_checked_at":"2026-01-15T00:34:46.551Z","response_time":107,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2026-01-15T00:48:58.450Z","updated_at":"2026-01-15T00:48:59.006Z","avatar_url":"https://github.com/springrain.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# UUID package for Go language\n\n[![Build Status](https://travis-ci.org/satori/go.uuid.svg?branch=master)](https://travis-ci.org/satori/go.uuid)\n[![Coverage Status](https://coveralls.io/repos/github/satori/go.uuid/badge.svg?branch=master)](https://coveralls.io/github/satori/go.uuid)\n[![GoDoc](http://godoc.org/github.com/satori/go.uuid?status.svg)](http://godoc.org/github.com/satori/go.uuid)\n\nThis package provides pure Go implementation of Universally Unique Identifier (UUID). Supported both creation and parsing of UUIDs.\n\nWith 100% test coverage and benchmarks out of box.\n\nSupported versions:\n* Version 1, based on timestamp and MAC address (RFC 4122)\n* Version 2, based on timestamp, MAC address and POSIX UID/GID (DCE 1.1)\n* Version 3, based on MD5 hashing (RFC 4122)\n* Version 4, based on random numbers (RFC 4122)\n* Version 5, based on SHA-1 hashing (RFC 4122)\n\n## Installation\n\nUse the `go` command:\n\n\t$ go get github.com/satori/go.uuid\n\n## Requirements\n\nUUID package tested against Go \u003e= 1.6.\n\n## Example\n\n```go\npackage main\n\nimport (\n\t\"fmt\"\n\t\"github.com/satori/go.uuid\"\n)\n\nfunc main() {\n\t// Creating UUID Version 4\n\t// panic on error\n\tu1 := uuid.Must(uuid.NewV4())\n\tfmt.Printf(\"UUIDv4: %s\\n\", u1)\n\n\t// or error handling\n\tu2, err := uuid.NewV4()\n\tif err != nil {\n\t\tfmt.Printf(\"Something went wrong: %s\", err)\n\t\treturn\n\t}\n\tfmt.Printf(\"UUIDv4: %s\\n\", u2)\n\n\t// Parsing UUID from string input\n\tu2, err := uuid.FromString(\"6ba7b810-9dad-11d1-80b4-00c04fd430c8\")\n\tif err != nil {\n\t\tfmt.Printf(\"Something went wrong: %s\", err)\n\t\treturn\n\t}\n\tfmt.Printf(\"Successfully parsed: %s\", u2)\n}\n```\n\n## Documentation\n\n[Documentation](http://godoc.org/github.com/satori/go.uuid) is hosted at GoDoc project.\n\n## Links\n* [RFC 4122](http://tools.ietf.org/html/rfc4122)\n* [DCE 1.1: Authentication and Security Services](http://pubs.opengroup.org/onlinepubs/9696989899/chap5.htm#tagcjh_08_02_01_01)\n\n## Copyright\n\nCopyright (C) 2013-2018 by Maxim Bublis \u003cb@codemonkey.ru\u003e.\n\nUUID package released under MIT License.\nSee [LICENSE](https://github.com/satori/go.uuid/blob/master/LICENSE) for details.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fspringrain%2Fgouuid","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fspringrain%2Fgouuid","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fspringrain%2Fgouuid/lists"}