
io.jsync.utils.UUID Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jsync.io Show documentation
Show all versions of jsync.io Show documentation
jsync.io is a non-blocking, event-driven networking framework for Java
package io.jsync.utils;
public class UUID {
private UUID() {
}
public static String generate() {
return CryptoUtils.calculateHmacSHA1(java.util.UUID.randomUUID().toString(), java.util.UUID.randomUUID().toString());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy