{"id":29878257,"url":"https://github.com/bylickilabs/zip-file-hasher","last_synced_at":"2026-07-19T10:36:44.786Z","repository":{"id":306754877,"uuid":"1027118645","full_name":"bylickilabs/ZIP-File-Hasher","owner":"bylickilabs","description":"A powerful Go-based CLI tool to securely hash the contents of ZIP files – 100% local, GDPR-compliant, with zero external dependencies.","archived":false,"fork":false,"pushed_at":"2025-07-27T11:38:15.000Z","size":14,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-07-27T13:04:20.504Z","etag":null,"topics":["bylickilabs","clitool","cybersecurity","dataintegrity","devopsutilities","dsgvocompliant","filehashing","forensictools","golang","goprojects","jsonoutputparser","localprocessingonly","md5hasher","minimaldependencies","opensource","release","sha256","ziphasher"],"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/bylickilabs.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,"zenodo":null}},"created_at":"2025-07-27T11:00:31.000Z","updated_at":"2025-07-27T11:38:19.000Z","dependencies_parsed_at":"2025-07-27T13:04:27.883Z","dependency_job_id":null,"html_url":"https://github.com/bylickilabs/ZIP-File-Hasher","commit_stats":null,"previous_names":["bylickilabs/zip-file-hasher"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/bylickilabs/ZIP-File-Hasher","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bylickilabs%2FZIP-File-Hasher","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bylickilabs%2FZIP-File-Hasher/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bylickilabs%2FZIP-File-Hasher/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bylickilabs%2FZIP-File-Hasher/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/bylickilabs","download_url":"https://codeload.github.com/bylickilabs/ZIP-File-Hasher/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bylickilabs%2FZIP-File-Hasher/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":268003624,"owners_count":24179292,"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","status":"online","status_checked_at":"2025-07-31T02:00:08.723Z","response_time":66,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["bylickilabs","clitool","cybersecurity","dataintegrity","devopsutilities","dsgvocompliant","filehashing","forensictools","golang","goprojects","jsonoutputparser","localprocessingonly","md5hasher","minimaldependencies","opensource","release","sha256","ziphasher"],"created_at":"2025-07-31T07:01:35.478Z","updated_at":"2025-10-23T21:27:40.827Z","avatar_url":"https://github.com/bylickilabs.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"|[![Go](https://github.com/bylickilabs/ZIP-File-Hasher/actions/workflows/go.yml/badge.svg)](https://github.com/bylickilabs/ZIP-File-Hasher/actions/workflows/go.yml)|\n|---|\n\n# 🔐 ZIP File Hasher\n\n|\u003cimg width=\"1280\" height=\"640\" alt=\"logo\" src=\"https://github.com/user-attachments/assets/1cea97c3-c965-49ec-af0c-fa880643aeff\" /\u003e|\n|---|\n\nA powerful Go-based CLI tool to securely hash the contents of ZIP files – 100% local, GDPR-compliant, with zero external dependencies.\n\n\u003cdetails\u003e\n  \u003csummary\u003e✅ Go Developer\u003c/summary\u003e\n\n| ![certificate_of_completion_go](https://github.com/user-attachments/assets/b8eca14b-a2fe-4419-abf0-a7d110a07dd2) |\n|---|\n\n\u003c/details\u003e\n\n---\n\n## 🚀 Features\n\n- 🗜️ Handles `.zip` files only\n- 📁 Extracts ZIP content into temporary directories\n- 🔐 Supported hash algorithms: `md5`, `sha1`, `sha256`, `sha512`\n- 🧾 Optional JSON output for automation and integration\n- 🛡️ Fully local processing – no upload, no cloud, no tracking\n\n---\n\n## 🖥️ Requirements\n\n- [Install Go (version 1.18 or higher)](https://go.dev/dl/)\n- Recommended: Windows 10 / 11\n\n---\n\n## 📦 Project Structure\n\n```plaintext\nziphasher/\n├── main.go                 # Application entry point\n├── hasher/\n│   └── filehash.go        # File hashing functionality\n└── zip/\n    └── unzip.go           # ZIP extraction logic\n```\n\n---\n\n## ⚙️ Initialization\n\n```yarn\ngo mod init ziphasher\n```\n\n\u003e ⚠️ The module name **must match** the import paths in `main.go`.\n\n---\n\n## ▶️ Run\n\n```powershell\ngo run main.go -zip=\"your_zip_file.zip\" -algo=sha512 -json\n```\n\n### 🔧 Parameters\n\n| Parameter | Description |\n|-----------|-------------|\n| `-zip`    | Path to the ZIP file |\n| `-algo`   | Hash algorithm: `md5`, `sha1`, `sha256`, `sha512` |\n| `-json`   | Enables JSON output format |\n\n---\n\n## 🔨 Optional: Build\n\n```powershell\ngo build -o ziphasher.exe\n```\n\nThen run via:\n\n```powershell\n.\\ziphasher.exe -zip=\"test.zip\" -algo=sha256 -json\n```\n\n---\n\n## 📑 Example Output (JSON)\n\n```json\n{\n  \"test.zip_extracted/readme.txt\": \"abc123def456...\",\n  \"test.zip_extracted/docs/manual.pdf\": \"f7b9aa22bb77...\"\n}\n```\n\n---\n\n## 👨‍💻 Author \u0026 License\n\nBYLICKILABS – 2025  \n\nLicense: MIT  \n[LICENSE](LICENSE)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbylickilabs%2Fzip-file-hasher","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbylickilabs%2Fzip-file-hasher","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbylickilabs%2Fzip-file-hasher/lists"}