MD5Util 工具类2.0.1

package com.jfai.kg.util;

import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
import java.nio.ByteBuffer;
import java.nio.channels.FileChannel;
import java.security.MessageDigest;
import java.security.NoSuchAlgorithmException;

import lombok.extern.slf4j.Slf4j;

/**
  * 
  * @Package com.jfai.kg.kafkacomsu.util
  * @author wanglf
  * @Description: MD5工具类,提供字符串MD5加密(校验),文件MD5值获取(校验)功能
  * @date 2018年6月30日 下午2:34:28 
  * @version 2.0.1
  */
@Slf4j
public class MD5Util {

	/**
	 * 16进制字符集
	 */
	private static final char HEX_DIGITS[] = { '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'A', 'B', 'C', 'D', 'E', 'F' };

	/**
	 * 
	 * 指定算法为MD5的MessageDigest
	 */
	private static MessageDigest messageDigest = null;

	/**
	 * 
	 * 初始化messageDigest的加密算法为MD5
	 */
	static {
		try {
			messageDigest = MessageDigest.getInstance("MD5");
		} catch (NoSuchAlgorithmException e) {
			log.error("Exception :", e);
		}
	}

	/**
	 * 获取文件的MD5值
	 * 
	 * @param file 目标文件
	 * @return MD5 字符串
	 */
	public static String getMD5String(File file) {
		String ret = "";
		FileInputStream in = null;
		FileChannel ch = null;
		try {
			in = new FileInputStream(file);
			ch = in.getChannel();
			ByteBuffer byteBuffer = ch.map(FileChannel.MapMode.READ_ONLY, 0, file.length());
			messageDigest.update(byteBuffer);
			ret = bytesToHex(messageDigest.digest());
		} catch (IOException e) {
			log.error("Exception :", e);
		} finally {
			if (in != null) {
				try {
					in.close();
				} catch (IOException e) {
					log.error("Exception :", e);
				}
			}
			if (ch != null) {
				try {
					ch.close();
				} catch (IOException e) {
					log.error("Exception :", e);
				}
			}
		}
		return ret;
	}

	/**
	 * MD5加密字符串
	 * 
	 * @param str 目标字符串
	 * @return MD5 加密后的字符串
	 */
	public static String getMD5String(String str) {
		return getMD5String(str.getBytes());
	}

	/**
	 * MD5加密以byte数组表示的字符串
	 * 
	 * @param bytes 目标byte数组
	 * @return MD5 加密后的字符串
	 */
	public static String getMD5String(byte[] bytes) {
		messageDigest.update(bytes);
		return bytesToHex(messageDigest.digest());
	}

	/**
	 * 按照mysql的函数生成md5
	 * mysql的函数生成md5,主要多加了一个.toLowerCase()
	 * @return MD5 加密后的字符串,然后大写转小写
	 */
	public static String getMySQLMD5(String str) {
		return getMD5String(str).toLowerCase();
	}

	/**
	 * 校验密码与其MD5是否一致
	 * 
	 * @param pwd 密码字符串
	 * @param md5 基准MD5值
	 * @return 检验结果
	 */
	public static boolean checkPassword(String pwd, String md5) {
		return getMD5String(pwd).equalsIgnoreCase(md5);
	}

	/**
	 * 校验密码与其MD5是否一致
	 * 
	 * @param pwd
	 *            以字符数组表示的密码
	 * @param md5
	 *            基准MD5值
	 * @return 检验结果
	 */
	public static boolean checkPassword(char[] pwd, String md5) {
		return checkPassword(new String(pwd), md5);
	}

	/**
	 * 检验文件的MD5值
	 * 
	 * @param file 目标文件
	 * @param md5 基准MD5值
	 * @return 检验结果
	 */
	public static boolean checkFileMD5(File file, String md5) {
		return getMD5String(file).equalsIgnoreCase(md5);
	}

	/**
	 * 将字节数组转换成16进制字符串
	 * 
	 * @param bytes 目标字节数组
	 * @return 转换结果
	 */
	public static String bytesToHex(byte bytes[]) {
		return bytesToHex(bytes, 0, bytes.length);
	}

	/**
	 * 将字节数组中指定区间的子数组转换成16进制字符串
	 * 
	 * @param bytes 目标字节数组
	 * @param start 起始位置(包括该位置)
	 * @param end 结束位置(不包括该位置)
	 * @return 转换结果
	 */
	public static String bytesToHex(byte bytes[], int start, int end) {
		StringBuilder sb = new StringBuilder();
		for (int i = start; i < start + end; i++) {
			sb.append(byteToHex(bytes[i]));
		}
		return sb.toString();
	}

	/**
	 * 将单个字节码转换成16进制字符串
	 * 
	 * @param bt 目标字节
	 * @return 转换结果
	 */
	public static String byteToHex(byte bt) {
		return HEX_DIGITS[(bt & 0xf0) >> 4] + "" + HEX_DIGITS[bt & 0xf];
	}

	public static void main(String[] args) throws IOException {

	}
}

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值