org.restcomm.connect.commons.cache.HashGenerator Maven / Gradle / Ivy
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