An open API service indexing awesome lists of open source software.

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

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

![Application Screenshot 01](.github/screenshot01.png)
![Application Screenshot 02](.github/screenshot02.png)

## 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
```