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

net.thucydides.core.digest.Digest Maven / Gradle / Ivy

There is a newer version: 4.1.20
Show newest version
package net.thucydides.core.digest;

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

public class Digest {
    public static String ofTextValue(final String text) {
        return DigestUtils.sha256Hex(text);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy