{"id":17947610,"url":"https://github.com/evanhei/filehasher","last_synced_at":"2026-05-11T05:43:51.480Z","repository":{"id":259564999,"uuid":"871770731","full_name":"EvanHei/FileHasher","owner":"EvanHei","description":"A Windows desktop app for validating checksums and hashing files.","archived":false,"fork":false,"pushed_at":"2024-10-28T03:27:33.000Z","size":245,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-03T15:16:57.523Z","etag":null,"topics":["csharp","cybersecurity","desktop-app","dotnet","hashing","windows"],"latest_commit_sha":null,"homepage":"","language":"C#","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/EvanHei.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":"2024-10-12T22:14:02.000Z","updated_at":"2024-10-28T03:27:26.000Z","dependencies_parsed_at":"2024-10-31T08:15:28.166Z","dependency_job_id":null,"html_url":"https://github.com/EvanHei/FileHasher","commit_stats":null,"previous_names":["evanhei/filehasher"],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EvanHei%2FFileHasher","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EvanHei%2FFileHasher/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EvanHei%2FFileHasher/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/EvanHei%2FFileHasher/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/EvanHei","download_url":"https://codeload.github.com/EvanHei/FileHasher/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247024152,"owners_count":20870940,"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":["csharp","cybersecurity","desktop-app","dotnet","hashing","windows"],"created_at":"2024-10-29T08:05:59.826Z","updated_at":"2026-05-11T05:43:51.011Z","avatar_url":"https://github.com/EvanHei.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"# FileHasher\n\nA Windows desktop app for cryptographically computing file hashes, validating checksums, and comparing data.\n\n## Table of Contents\n\n1. [Getting Started](#getting-started)\n2. [Guide](#guide)\n3. [Technologies](#technologies)\n\n## Getting Started\n\n\u003cdetails\u003e\n\u003csummary\u003e\u003cstrong\u003eRun from executable\u003c/strong\u003e\u003c/summary\u003e\n\n1. Download [FileHasher-x64.exe](https://github.com/EvanHei/FileHasher/releases/download/v1.0.0/FileHasher-x64.exe) or [FileHasher-x86.exe](https://github.com/EvanHei/FileHasher/releases/download/v1.0.0/FileHasher-x86.exe) depending on your architecture.\n\n   | File               | SHA-256                                                            |\n   | ------------------ | ------------------------------------------------------------------ |\n   | FileHasher-x64.exe | `957e1f2be0ce074192af620edcfadef2805765ed99efc09b54fef98f349c9ff7` |\n   | FileHasher-x86.exe | `1d9ca1aab24bbe53d2ddfa69be1d7c04681b60ba941a16d768ce37f438c21190` |\n\n2. Double-click the executable, click \"More info\", and then click \"Run anyway\". This prompt will disappear the next time FileHasher is run.\n\n   \u003cimg src=\"./images/MoreInfo.png\" width=\"350\"\u003e\u003cimg src=\"./images/RunAnyway.png\" width=\"350\"\u003e\n\n\u003c/details\u003e\n\n\u003cdetails\u003e\n\u003csummary\u003e\u003cstrong\u003eRun from source code\u003c/strong\u003e\u003c/summary\u003e\n\n1. Download the .NET SDK from Microsoft's website \u003ca href=\"https://dotnet.microsoft.com/download\"\u003e here\u003c/a\u003e or verify installation by running the following command:\n\n   ```bash\n   dotnet --version\n   ```\n\n2. Navigate to FileHasher/WinFormsUI/ and launch with the following command:\n\n   ```bash\n   dotnet run\n   ```\n\n\u003c/details\u003e\n\n## Guide\n\n### Hashes Panel\n\nThe Hashes panel allows the computation of a file's hashes using multiple different algorithms. A file can either be dragged and dropped on the window or manually selected using the Browse... feature.\n\n- **Browse...**: opens a dialog to select a file.\n- **📋**: copies the hash to the clipboard.\n- **🗑️**: clears the current file's hashes.\n- **❔**: opens the README on GitHub.\n\n\u003cimg src=\"./images/HashesPanel.png\" width=\"300\"\u003e\n\n### Validate Panel\n\nThe Validate panel allows the validation of an expected file hashes compared against a computed hash of a provided file.\n\n- **Dropdown**: allows selection of the hashing algorithm.\n- **Text box**: allows input of the expected hash.\n\n\u003cimg src=\"./images/ValidatePanel.png\" width=\"300\"\u003e\n\n### Compare Panel\n\nThe Compare panel allows data from 2 files to be hashed and compared using SHA512.\n\n\u003cimg src=\"./images/ComparePanel.png\" width=\"300\"\u003e\n\n## Technologies\n\n- **OS**: Windows\n- **IDE**: Visual Studio\n- **Language**: C#\n- **Framework**: .NET\n- **UI**: Windows Forms\n- **Version Control**: Git / GitHub\n- **Algorithms**: MD5, SHA1, SHA256, SHA384, SHA512\n- **Unit Tests**: xUnit\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fevanhei%2Ffilehasher","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fevanhei%2Ffilehasher","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fevanhei%2Ffilehasher/lists"}