https://github.com/sirblobman/file-hash-checker
A program used to check hashes for certain files
https://github.com/sirblobman/file-hash-checker
application checker crc32 file gui hash java md5 sha1 sha256
Last synced: 9 days ago
JSON representation
A program used to check hashes for certain files
- Host: GitHub
- URL: https://github.com/sirblobman/file-hash-checker
- Owner: SirBlobman
- Created: 2019-12-07T15:42:07.000Z (over 6 years ago)
- Default Branch: main
- Last Pushed: 2023-05-10T19:15:13.000Z (about 3 years ago)
- Last Synced: 2025-11-11T02:12:44.980Z (8 months ago)
- Topics: application, checker, crc32, file, gui, hash, java, md5, sha1, sha256
- Language: Java
- Homepage: https://www.sirblobman.xyz/
- Size: 188 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.MD
Awesome Lists containing this project
README
# File Hash Checker
File Hash Checker is a useful program that I use to check hashes of files.
The following checksum types are available:
- MD5
- SHA-1
- SHA-256
- CRC32
## Requirements
- Java 17
## Screenshots


## Usage
You can use this program by double-clicking the jar file.
If it does not run, try opening it through a command line.
**Windows:**
```shell
> javaw.exe -jar checker-3.0.0.jar
```
**Mac and Linux:**
```shell
$ java -jar checker-3.0.0.jar
```
## Compilation Instructions
This project can be compiled with gradle.
**Windows:**
```shell
> gradlew.bat clean build
```
**Mac and Linux:**
```shell
$ ./gradlew clean build
```