public class Main
{
public static void main(String[] args)
{
byte[] data = "Hello, world!".getBytes();
byte[] hash = new HashAlgo().get(data);
System.out.println(bytesToHex(hash));
}
/* helper function to visualize the hash */
static String bytesToHex(byte[] bytes)
{
StringBuilder hexString = new StringBuilder();
for (int i = 0; i < bytes.length; i++)
{
String hex = Integer.toHexString(0xFF & bytes[i]);
hexString.append(hex.length() == 1 ? "0" : hex);
}
return hexString.toString();
}
}
$ javac Main.java && java Main
b9536f99aac5a3f5e4f26812d6ad4ccbb0c8a1d28d6285c135ff775ab94b91bd