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

org.javers.common.string.ShaDigest Maven / Gradle / Ivy

There is a newer version: 7.6.1
Show newest version
package org.javers.common.string;

import java.io.UnsupportedEncodingException;
import java.security.MessageDigest;
import java.security.NoSuchAlgorithmException;

/**
 * @author bartosz.walacik
 */
public class ShaDigest {
    public static int shortDigest(String text){
        byte[] hashBytes = digest(text);

        int result = 0;
        for (int i=0; i




© 2015 - 2024 Weber Informatics LLC | Privacy Policy