Java SHA3-384 Hash using Apache Commons Codec
Tags: Apache Commons Codec Java SHA3-384 Java Hash DigestUtils
In this Java tutorial we learn how to calculate the SHA3-384 hash in Java 9 or higher using the DigestUtils class of Apache Commons Codec library.
Table of contents
- Add Apache Commons Codec Dependency to Java project
- Convert String to SHA3-384 Hash in Java
- Generate File SHA3-384 Checksum Hash String in Java
- Generate SHA3-384 Hash as Bytes Array
- Get Instance of java.security.MessageDigest for SHA3-384 Hash Algorithm
Add Apache Commons Codec Dependency to Java project
To use Apache Commons Codec library in the Gradle build project, add the following dependency into the build.gradle file.
implementation group: 'commons-codec', name: 'commons-codec', version: '1.15'
To use the Apache Commons Codec library in the Maven build project, add the following dependency into the pom.xml file.
<dependency>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
<version>1.15</version>
</dependency>
To have more information about the Apache Commons Codec Java library you can visit the project home page at commons.apache.org/proper/commons-codec/
Convert String to SHA3-384 Hash in Java
The Apache Commons Codec library provides method DigestUtils.sha3_384Hex() can be used to calculate the SHA3-384 hash and return value as a hex string.
String hashedValue = DigestUtils.sha3_384Hex(inputData);
In the following Java program, we show how to use DigestUtils.sha3_384Hex() method to hash an input String to SHA3-384 hash as a hex string.
Sha3384Example1.java
import org.apache.commons.codec.digest.DigestUtils;
public class Sha3384Example1 {
public static void main(String... args) {
String inputData = "Simple Solution";
String hashedValue = DigestUtils.sha3_384Hex(inputData);
System.out.println("Input String:" + inputData);
System.out.println("SHA3-384:" + hashedValue);
}
}
Input String:Simple Solution
SHA3-384:a23c128bc76334d03cde147ae2358597c13c96767b35725597a8e2d942c44edda757763b04bff9533ed2aa27de5dabec
Generate File SHA3-384 Checksum Hash String in Java
Apache Commons Codec library provides the DigestUtils.sha3_384Hex() method to generate SHA3-384 hash for an InputStream as below.
String hashedValue = DigestUtils.sha3_384Hex(inputStream);
For example, we have a document file at D:\SimpleSolution\Document.doc
The following Java program to show you how to use the DigestUtils.sha3_384Hex() to generate SHA3-384 checksum hash for a given file and return SHA3-384 hash value as a hex string.
Sha3384Example2.java
import org.apache.commons.codec.digest.DigestUtils;
import java.io.FileInputStream;
import java.io.IOException;
import java.io.InputStream;
public class Sha3384Example2 {
public static void main(String... args) throws IOException {
String filePath = "D:\\SimpleSolution\\Document.docx";
InputStream inputStream = new FileInputStream(filePath);
String hashedValue = DigestUtils.sha3_384Hex(inputStream);
System.out.println("SHA3-384:" + hashedValue);
}
}
SHA3-384:21c3a204631dd18f8b27b5b5819abcecd311e8ce6b7b9f13d35d0a79d83ca11e305c1d709a7bd86d884d0dd1a0b090b6
Generate SHA3-384 Hash as Bytes Array
The Apache Commons Codec library also provides DigestUtils.sha3_384() method to calculate SHA3-384 hash and return value as a byte[] array.
byte[] hashedValue = DigestUtils.sha3_384(inputData);
The following Java example program to show you how to use the DigestUtils.sha3_384() method to hash a String to a SHA3-384 hash value as byte[] array.
Sha3384Example3.java
import org.apache.commons.codec.digest.DigestUtils;
import java.util.Arrays;
public class Sha3384Example3 {
public static void main(String... args) {
String inputData = "Simple Solution";
byte[] hashedValue = DigestUtils.sha3_384(inputData);
System.out.println("Input String:" + inputData);
System.out.println("SHA3-384 as bytes:" + Arrays.toString(hashedValue));
}
}
Input String:Simple Solution
SHA3-384 as bytes:[-94, 60, 18, -117, -57, 99, 52, -48, 60, -34, 20, 122, -30, 53, -123, -105, -63, 60, -106, 118, 123, 53, 114, 85, -105, -88, -30, -39, 66, -60, 78, -35, -89, 87, 118, 59, 4, -65, -7, 83, 62, -46, -86, 39, -34, 93, -85, -20]
Get Instance of java.security.MessageDigest for SHA3-384 Hash Algorithm
Using Apache Commons Codec we can use the DigestUtils.getSha3_384Digest() method to return instance of SHA3-384 java.security.MessageDigest and use it to calculate the SHA3-384 hash as following Java program.
Sha3384Example4.java
import org.apache.commons.codec.binary.Hex;
import org.apache.commons.codec.digest.DigestUtils;
import java.nio.charset.StandardCharsets;
import java.security.MessageDigest;
public class Sha3384Example4 {
public static void main(String... args) {
String inputData = "Simple Solution";
MessageDigest messageDigest = DigestUtils.getSha3_384Digest();
byte[] hashedBytes = messageDigest.digest(inputData.getBytes(StandardCharsets.UTF_8));
String hashedValue = Hex.encodeHexString(hashedBytes);
System.out.println("Input String:" + inputData);
System.out.println("SHA3-384:" + hashedValue);
}
}
Input String:Simple Solution
SHA3-384:a23c128bc76334d03cde147ae2358597c13c96767b35725597a8e2d942c44edda757763b04bff9533ed2aa27de5dabec
Happy Coding 😊
Related Articles
Java SHA3-224 Hash using Apache Commons Codec
Java SHA3-256 Hash using Apache Commons Codec
Java SHA3-512 Hash using Apache Commons Codec
Java SHA-512 / 224 Hash using Apache Commons Codec
Java SHA-512 / 256 Hash using Apache Commons Codec
Java Generate SHA-1 using DigestUtils in Apache Commons Codec
Java SHA-256 Hash using Apache Commons Codec
Java SHA-384 Hash using Apache Commons Codec
Java SHA-512 Hash using Apache Commons Codec
Java MD2 Hash using Apache Commons Codec