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

com.seejoke.core.utils.MD5 Maven / Gradle / Ivy

There is a newer version: 0.3
Show newest version
package com.seejoke.core.utils;


import java.security.MessageDigest;

/**
 * MD5加密工具类
 *
 * @author yangzhongying
 */
public class MD5 {

    /**
     * 设定一个字符串数组
     */
    private final static String[] HEXDIGITS = {"0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "a", "b", "c", "d", "e", "f"};

    public static String byteArrayToString(byte[] b) {
        StringBuffer sb = new StringBuffer();
        for (int i = 0; i < b.length; i++) {
            sb.append(byteToHexString(b[i]));
        }
        return sb.toString();
    }

    /**
     * @param b 字节;
     * @return 字符串;
     */
    private static String byteToHexString(byte b) {
        int n = b;
        if (n < 0) {
            n = 256 + n;
        }
        int d1 = n / 16;
        int d2 = n % 16;
        return HEXDIGITS[d1] + HEXDIGITS[d2];
    }


    public static String encode(String password) {
        String resultString = null;
        try {
            resultString = new String(password);
            MessageDigest md = MessageDigest.getInstance("MD5");
            resultString = byteArrayToString(md.digest(resultString.getBytes()));
        } catch (Exception ex) {
        }
        return resultString;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy