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

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

package dev.soffa.foundation.commons;

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

public final class DigestUtil {

    private DigestUtil() {
    }

    public static String md5(String value) {
        if (TextUtil.isEmpty(value)) {
            return null;
        }
        return DigestUtils.md5Hex(value);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy