![JAR search and dependency download from the Maven repository](/logo.png)
org.restcomm.connect.commons.cache.HashGenerator Maven / Gradle / Ivy
The newest version!
package org.restcomm.connect.commons.cache;
import org.apache.shiro.crypto.hash.Sha256Hash;
/**
* @author gvagenas
*/
public class HashGenerator {
public static String hashMessage(String first, String second, String third) {
return new Sha256Hash(first + second + third).toHex();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy