吾爱破解 - 52pojie.cn

 找回密码
 注册[Register]

QQ登录

只需一步,快速开始

查看: 2968|回复: 1
收起左侧

[Java 转载] Java 生成16/32位 MD5

[复制链接]
七寸往事 发表于 2014-11-1 19:37
private static final char HEX_DIGITS[] = { '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'A', 'B', 'C', 'D', 'E', 'F' };  
private static String toHexString(byte[] b) {  
    StringBuilder sb = new StringBuilder(b.length * 2);  
    for (int i = 0; i < b.length; i++) {  
        sb.append(HEX_DIGITS[(b[i] & 0xf0) >>> 4]);  
        sb.append(HEX_DIGITS[b[i] & 0x0f]);  
    }  
    return sb.toString();  
}  

public static String Bit32(String SourceString) throws Exception {  
    MessageDigest digest = java.security.MessageDigest.getInstance("MD5");  
    digest.update(SourceString.getBytes());  
    byte messageDigest[] = digest.digest();  
    return toHexString(messageDigest);  
}  

public static String Bit16(String SourceString) throws Exception {  
    return Bit32(SourceString).substring(8, 24);  
}

还有一个
private final static String[] strDigits = { "0", "1", "2", "3", "4", "5",            "6", "7", "8", "9", "a", "b", "c", "d", "e", "f" };


    // 返回形式为数字跟字符串
    private static String byteToArrayString(byte bByte) {
        int iRet = bByte;
        // System.out.println("iRet="+iRet);
        if (iRet < 0) {
            iRet += 256;
        }
        int iD1 = iRet / 16;
        int iD2 = iRet % 16;
        return strDigits[iD1] + strDigits[iD2];
    }

    // 返回形式只为数字
//    private static String byteToNum(byte bByte) {
//        int iRet = bByte;
//        System.out.println("iRet1=" + iRet);
//        if (iRet < 0) {
//            iRet += 256;
//        }
//        return String.valueOf(iRet);
//    }

    // 转换字节数组为16进制字串
    private static String byteToString(byte[] bByte) {
        StringBuffer sBuffer = new StringBuffer();
        for (int i = 0; i < bByte.length; i++) {
            sBuffer.append(byteToArrayString(bByte[i]));
        }
        return sBuffer.toString();
    }

    /**
     * 
     * @param strObj
     * [url=home.php?mod=space&uid=155549]@Return[/url] 
     */

    public static String GetMD5Code(String strObj) {
        String resultString = null;
        try {
            resultString = new String(strObj);
            MessageDigest md = MessageDigest.getInstance("MD5");
            // md.digest() 该函数返回值为存放哈希值结果的byte数组
            resultString = byteToString(md.digest(strObj.getBytes()));
        } catch (NoSuchAlgorithmException ex) {
            ex.printStackTrace();
        }
        return resultString;
    }

发帖前要善用论坛搜索功能,那里可能会有你要找的答案或者已经有人发布过相同内容了,请勿重复发帖。

manbajie 发表于 2014-11-1 21:54
我也只能看看
您需要登录后才可以回帖 登录 | 注册[Register]

本版积分规则

返回列表

RSS订阅|小黑屋|处罚记录|联系我们|吾爱破解 - LCG - LSG ( 京ICP备16042023号 | 京公网安备 11010502030087号 )

GMT+8, 2024-11-15 14:03

Powered by Discuz!

Copyright © 2001-2020, Tencent Cloud.

快速回复 返回顶部 返回列表