All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.restcomm.connect.commons.cache.HashGenerator Maven / Gradle / Ivy

There is a newer version: 8.4.0-227
Show 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