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

io.soffa.foundation.commons.DigestUtil Maven / Gradle / Ivy

There is a newer version: 2.0.2
Show newest version
package io.soffa.foundation.commons;

import org.apache.commons.codec.digest.DigestUtils;

public final class DigestUtil {

    private  DigestUtil() {}

    public static String md5(String value) {
        return DigestUtils.md5Hex(value);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy