[Java的写法]之MD5对字符串签名操作

对字符串签名后,1:长字符串变为32位字符:aacfbe08d042fddd8ee778b148efc923
2 : 只要长字符串内容不变,签名后得到的32位字符不变。适合用来做ID等。
private String genKeyId(String keyStr) {
return Md5Utils.getStringMD5(keyStr);
}

Md5Utils 类如下:

import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
import java.io.InputStream;
import java.security.MessageDigest;
import java.security.NoSuchAlgorithmException;
import org.apache.commons.lang3.StringUtils;

public class Md5Utils {
protected static char[] hexDigits = new char[]{'0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'a', 'b', 'c', 'd', 'e', 'f'};
protected static MessageDigest messagedigest = null;

public Md5Utils() {      }
static {
    try {
        messagedigest = MessageDigest.getInstance("MD5");
    } catch (NoSuchAlgorithmException var1) {
        var1.printStackTrace();
    }

}

public static String getFileMD5String(File file) throws IOException {
    InputStream fis = new FileInputStream(file);
    byte[] buffer = new byte[1024];
    boolean var3 = false;

    int numRead;
    while((numRead = fis.read(buffer)) > 0) {
        messagedigest.update(buffer, 0, numRead);
    }

    fis.close();
    return bufferToHex(messagedigest.digest());
}

public static String getStringMD5(String str) {
    if (StringUtils.isEmpty(str)) {
        return "";
    } else {
        byte[] buffer = str.getBytes();
        messagedigest.update(buffer);
        return bufferToHex(messagedigest.digest());
    }
}

public static String bufferToHex(byte[] bytes) {
    return bufferToHex(bytes, 0, bytes.length);
}

private static String bufferToHex(byte[] bytes, int m, int n) {
    StringBuffer stringbuffer = new StringBuffer(2 * n);
    int k = m + n;

    for(int l = m; l < k; ++l) {
        appendHexPair(bytes[l], stringbuffer);
    }

    return stringbuffer.toString();
}

private static void appendHexPair(byte bt, StringBuffer stringbuffer) {
    char c0 = hexDigits[(bt & 240) >> 4];
    char c1 = hexDigits[bt & 15];
    stringbuffer.append(c0);
    stringbuffer.append(c1);
}

private static final String toHex(byte[] hash) {
    if (hash == null) {
        return null;
    } else {
        StringBuffer buf = new StringBuffer(hash.length * 2);

        for(int i = 0; i < hash.length; ++i) {
            if ((hash[i] & 255) < 16) {
                buf.append("0");
            }

            buf.append(Long.toString((long)(hash[i] & 255), 16));
        }

        return buf.toString();
    }
}

public static String hash(String s) {
    try {
        return new String(toHex(getStringMD5(s).getBytes("UTF-8")).getBytes("UTF-8"), "UTF-8");
    } catch (Exception var2) {
        return s;
    }
}

public static void main(String[] args) {
    System.out.println(getStringMD5("admin123"));
    System.out.println(hash("123456"));
}
}
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值