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

co.fingerprintsoft.payment.paygate.MD5ToString Maven / Gradle / Ivy

There is a newer version: 2.5.0
Show newest version
package co.fingerprintsoft.payment.paygate;

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

import java.security.NoSuchAlgorithmException;

public class MD5ToString {

    public static String md5String(StringBuilder sb) throws NoSuchAlgorithmException {
        return DigestUtils.md5Hex(sb.toString());
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy