The File Hashsum Generator is a Java program that generates SHA3-256 hash values for files using multi-threading for improved performance. The Bouncy Castle library is utilized to encode the hash generated after applying the SHA3-256 algorithm.
- Efficiently generates SHA3-256 hash values for one or multiple files.
- Utilizes multi-threading for parallel processing, optimizing the hash generation process.
- Uses the Bouncy Castle library for secure encoding of hash values.
- Works on various platforms, as it is implemented in Java.
- Java Runtime Environment (JRE)
- Bouncy Castle library (bcprov-jdk15on-xxx.jar)
- Download Bouncy Castle
- Ensure that you have the Java Runtime Environment (JRE) installed.
- Download the Bouncy Castle library and place the JAR file (e.g., bcprov-jdk15on-xxx.jar) in the same directory as your File Hashsum Generator JAR file.
- Open a terminal or command prompt.
To generate hash values for files, use the following command:
java -cp "FileHashsumGenerator.jar:bcprov-jdk15on-xxx.jar" FileHashsumGenerator <file_path_1> <file_path_2> ...