{"id":18602176,"url":"https://github.com/ju0x/humanhash","last_synced_at":"2025-05-16T17:34:42.359Z","repository":{"id":199347655,"uuid":"702112442","full_name":"Ju0x/humanhash","owner":"Ju0x","description":"human-readable representations of digests","archived":false,"fork":false,"pushed_at":"2023-10-31T15:51:59.000Z","size":17,"stargazers_count":2,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-18T01:40:14.908Z","etag":null,"topics":["accessibility","checksum","digest","go","golang","golang-module","google","hacktoberfest","hash","hashing","support","username","verify"],"latest_commit_sha":null,"homepage":"","language":"Go","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Ju0x.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-10-08T14:31:05.000Z","updated_at":"2024-05-31T08:54:07.000Z","dependencies_parsed_at":null,"dependency_job_id":"f5d401d9-0e91-4e58-bd27-e24789b5c96f","html_url":"https://github.com/Ju0x/humanhash","commit_stats":null,"previous_names":["ju0x/humanhash"],"tags_count":3,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Ju0x%2Fhumanhash","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Ju0x%2Fhumanhash/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Ju0x%2Fhumanhash/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Ju0x%2Fhumanhash/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Ju0x","download_url":"https://codeload.github.com/Ju0x/humanhash/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":254576921,"owners_count":22094482,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["accessibility","checksum","digest","go","golang","golang-module","google","hacktoberfest","hash","hashing","support","username","verify"],"created_at":"2024-11-07T02:10:35.572Z","updated_at":"2025-05-16T17:34:42.339Z","avatar_url":"https://github.com/Ju0x.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# HumanHash\n\nHuman-readable digests in Go\n\nBased on: https://github.com/zacharyvoase/humanhash\n\n⚠️ **Warning:** These should only be used to representate another digest or UUID in a more readable version. They're not safe to use as a real hashing algorithm because they don't provide any safety features from modern hashes.\n\n## Example\n\nGenerate a Humanhash based on a SHA256 digest:\n```go\n// Generate SHA256 hash\ns := \"Example\"\n\nh := sha256.New()\nh.Write([]byte(s))\ndigest := h.Sum(nil)\n\n// Generate Humanhash\nhash, _ := humanhash.Humanize(digest, 4, \"-\")\n\n// Output:\n// jig-table-kansas-lion\nfmt.Println(hash)\n```\n\nGenerate a UUID with a Humanhash:\n```go\nhash, uuid, _ := humanhash.UUID()\n\n// Output:\n// Humanhash: sixteen-maryland-island-jig UUID: 361fbc5c-8154-4b1b-983f-d313934b3d8f\nfmt.Printf(\"Humanhash: %s UUID: %s\\n\", hash, uuid)\n```\n\nSet a custom Wordlist (must have 256 words)\n```go\nhumanhash.Wordlist(\"custom_wordlist.txt\")\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fju0x%2Fhumanhash","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fju0x%2Fhumanhash","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fju0x%2Fhumanhash/lists"}