"If a worker wants to do his job well, he must first sharpen his tools." - Confucius, "The Analects of Confucius. Lu Linggong"
Front page > Programming > How to Hash a String with SHA-256 in Java: A Step-by-Step Guide

How to Hash a String with SHA-256 in Java: A Step-by-Step Guide

Posted on 2025-02-23
Browse:455

How to Hash a String with SHA-256 in Java: A Step-by-Step Guide

Hashing a String with SHA-256 in Java: Unraveling the Encoding Enigma

Hashing algorithms, like SHA-256, are not encoding mechanisms; they're one-way irreversible functions. To hash a string with SHA-256 in Java, follow these steps:

  1. Encode the String as Bytes: Convert the string into a byte array using a specific character encoding, such as StandardCharsets.UTF_8. This step transforms the textual string into a binary representation.
  2. Calculate the Hash: Instantiate a MessageDigest object using the "SHA-256" algorithm. Invoke the digest method on this object, passing the byte array created in step 1. The result is a byte array containing the hashed representation.
  3. Converting to String: The hashed data is a binary value, so to represent it as a string, consider either base64 or hexadecimal encoding. Do not attempt to use the String(byte[], String) constructor, as this will lead to incorrect string representation.

For a practical example:

MessageDigest digest = MessageDigest.getInstance("SHA-256");
byte[] hash = digest.digest(text.getBytes(StandardCharsets.UTF_8));

This snippet demonstrates how to obtain the SHA-256 hash of a string in Java. Remember that hashing provides irreversible data transformation, typically used for cryptographic purposes or ensuring data integrity.

Latest tutorial More>

Disclaimer: All resources provided are partly from the Internet. If there is any infringement of your copyright or other rights and interests, please explain the detailed reasons and provide proof of copyright or rights and interests and then send it to the email: [email protected] We will handle it for you as soon as possible.

Copyright© 2022 湘ICP备2022001581号-3