Created
May 3, 2015 17:08
-
-
Save giusepperizzo/630d32cc473069497ac1 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// import javax.xml.bind.DatatypeConverter; | |
// import java.io.UnsupportedEncodingException; | |
// import java.security.MessageDigest; | |
// import java.security.NoSuchAlgorithmException; | |
// import java.util.UUID; | |
public static void main(String[] args) { | |
String hash; | |
try { | |
String ID = ""; | |
hash = DatatypeConverter.printHexBinary( | |
MessageDigest.getInstance("SHA-1").digest(ID.getBytes("UTF-8"))); | |
UUID uuid = UUID.nameUUIDFromBytes(hash.getBytes()); | |
System.out.println(uuid.toString()); | |
} catch (NoSuchAlgorithmException e) { | |
e.printStackTrace(); | |
} catch (UnsupportedEncodingException e) { | |
e.printStackTrace(); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment