Go to the documentation of this file.
19package com.basistech.df.cybertriage.autopsy.ctapi.util;
20import com.google.common.base.Charsets;
21import com.google.common.hash.HashCode;
22import com.google.common.hash.HashFunction;
23import com.google.common.hash.Hashing;
24import org.apache.commons.lang3.StringUtils;
36 if (StringUtils.isNotBlank(inp)) {
37 HashFunction hf = Hashing.md5();
38 HashCode hc = hf.newHasher()
39 .putString(inp.toLowerCase(), Charsets.UTF_8)
static String getMD5MessageDigest(String inp)
Copyright © 2012-2024 Sleuth Kit Labs. Generated on:
This work is licensed under a
Creative Commons Attribution-Share Alike 3.0 United States License.