mirror of
https://github.com/Geprivilegieerde-Anonimiteit-BV/XACrypto.git
synced 2026-08-21 13:36:21 -04:00
11 lines
244 B
Java
11 lines
244 B
Java
package de.caydenno1.xacrypto;
|
|
import de.caydenno1.xacrypto.hash.sha.SHA0;
|
|
public class XACrypto {
|
|
private XACrypto() {}
|
|
|
|
static void main(String[] args) {
|
|
String res = SHA0.hash("tah");
|
|
System.out.println(res);
|
|
}
|
|
}
|