String passwort="passwort";
InputStream stream = new ByteArrayInputStream(passwort
.getBytes(StandardCharsets.UTF_8));
try {
System.out.println(Hash.checksum(stream, "SHA-256"));
} catch (Exception e) {
e.printStackTrace();
}
[source,java,indent=0]
----
String passwort="passwort";
InputStream stream = new ByteArrayInputStream(passwort
.getBytes(StandardCharsets.UTF_8));
// oder, um einen Hash für eine Datei zu bestimmen:
// InputStream stream = new FileInputStream("D:\\test.png");
try {
// SHA-1, MD5 oder SHA-256
System.out.println(Hash.checksum(stream, "SHA-256"));
} catch (Exception e) {
e.printStackTrace();
}
----