read note in readme

This commit is contained in:
2026-05-27 20:51:32 -04:00
parent 981f3ea46e
commit 3eb755bc90
6 changed files with 151 additions and 12 deletions
+5 -2
View File
@@ -1,7 +1,10 @@
package de.caydenno1.xacrypto;
import de.caydenno1.xacrypto.hash.sha.SHA0;
public class XACrypto {
private XACrypto() {}
static void main(String[] args) {}
static void main(String[] args) {
String res = SHA0.hash("tah");
System.out.println(res);
}
}