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

com.app.common.utils.SHAUtils Maven / Gradle / Ivy

package com.app.common.utils;

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

/**
 * @Description
 * @Author
 * @Date
 **/
public class SHAUtils {

    public static String sha256Hex(String pwd) {
        return DigestUtils.sha256Hex(pwd);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy