Example usage for org.apache.commons.codec.digest DigestUtils md5

List of usage examples for org.apache.commons.codec.digest DigestUtils md5

Introduction

In this page you can find the example usage for org.apache.commons.codec.digest DigestUtils md5.

Prototype

public static byte[] md5(String data) 

Source Link

Usage

From source file:tools.datasync.utils.Md5HashGenerator.java

public String generate(String data) {
    try {//from  ww w.  ja v  a 2s. c o m
        byte[] digest = DigestUtils.md5(data);
        return (DigestUtils.md5Hex(digest));
    } catch (Exception e) {
        LOG.warn("Error while generating checksum on value [" + data + "]", e);
        return null;
    }
}