List of usage examples for com.google.common.hash Hashing sha512
public static HashFunction sha512()
From source file:org.fenixedu.bennu.oauth.servlets.OAuthAuthorizationServlet.java
private static String generateCode() { return Hashing.sha512().hashString(UUID.randomUUID().toString(), StandardCharsets.UTF_8).toString(); }