该工具类用于进行MD5加密和SHA1加密:
import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
import java.io.InputStream;
import java.security.DigestInputStream;
import java.security.MessageDigest;
import java.security.NoSuchAlgorithmException;
/**
* 单向加密--MD算法(消息摘要算法MD5和SHA1 )工具类
* @author hasee
*
*/
public class MDUtils {
/**
* MD算法(消息摘要算法) 加密
* @param data 要加密的数据
* @param MDType MD算法(消息摘要算法)类型
* @return byte[] 加密后的字节数组
* @throws NoSuchAlgorithmException
*/
public static byte[] encrypt(byte[] data,String MDType) throws NoSuchAlgorithmException{
MessageDigest md=MessageDigest.getInstance(MDType);
md.update(data);
return md.digest();
}
/**
* 对文件进行MD算法(消息摘要算法) 加密
* @param data 要加密的数据
* @param MDType MD算法(消息摘要算法)类型
* @return byte[] 加密后的字节数组
* @throws NoSuchAlgorithmException
* @throws IOException
*/
public static byte[] encryptFile(File file,String MDType) throws NoSuchAlgorithmException, IOException{
InputStream in=new FileInputStream(file);
DigestInputStream dis=new DigestInputStream(in, MessageDigest.getInstance(MDType));
byte[] buffer=new byte[1024];
while((dis.read(buffer, 0, buffer.length))!=-1){
}
MessageDigest md=dis.getMessageDigest();
return md.digest();
}
/**
* MD5加密
* (Spring中可以直接使用org.springframework.util.DigestUtils.md5Digest(bytes))
* @param data 要加密的数据
* @return byte[] 加密后的字节数组
* @throws NoSuchAlgorithmException
*/
public static byte[] encryptMD5(byte[] data) throws NoSuchAlgorithmException {
return encrypt(data, "MD5");
}
/**
* MD5加密(返回16进账字符串)
* (Spring中可以直接使用org.springframework.util.DigestUtils.md5DigestAsHex(bytes))
* @param data 要加密的数据
* @return byte[] 加密后的16进账字符串
* @throws Exception
*/
public static String encryptMD5_HexStr(byte[] data) throws Exception {
//ByteUtils:字节工具类,查看地址:https://blog.csdn.net/chentiefeng521/article/details/80247691
return ByteUtils.byteArrToHexStr(encryptMD5(data));
}
/**
* 对文件进行MD5加密
* @param data 要加密的数据
* @return byte[] 加密后的16进账字符串
* @throws Exception
*/
public static byte[] encryptMD5File(File file) throws Exception {
return encryptFile(file,"MD5");
}
/**
* 对文件进行MD5加密(返回16进账字符串)
* @param data 要加密的数据
* @return byte[] 加密后的16进账字符串
* @throws Exception
*/
public static String encryptMD5File_HexStr(File file) throws Exception {
return ByteUtils.byteArrToHexStr(encryptMD5File(file));
}
/**
* SHA1 加密
* @param data 要加密的数据
* @return byte[] 加密后的字节数组
* @throws NoSuchAlgorithmException
*/
public static byte[] encryptSHA(byte[] data) throws NoSuchAlgorithmException {
return encrypt(data, "SHA");
}
/**
* SHA1 加密(返回16进账字符串)
* @param data 要加密的数据
* @return byte[] 加密后的16进账字符串
* @throws Exception
*/
public static String encryptSHA_HexStr(byte[] data) throws Exception {
//ByteUtils:字节工具类,查看地址:https://blog.csdn.net/chentiefeng521/article/details/80247691
return ByteUtils.byteArrToHexStr(encryptSHA(data));
}
/**
* 对文件进行SHA1 加密
* @param data 要加密的数据
* @return byte[] 加密后的16进账字符串
* @throws Exception
*/
public static byte[] encryptSHAFile(File file) throws Exception {
return encryptFile(file,"SHA");
}
/**
* 对文件进行SHA1 加密(返回16进账字符串)
* @param data 要加密的数据
* @return byte[] 加密后的16进账字符串
* @throws Exception
*/
public static String encryptSHAFile_HexStr(File file) throws Exception {
return ByteUtils.byteArrToHexStr(encryptSHAFile(file));
}
public static void main(String[] args) throws Exception {
String password="admin";
System.out.println("MD5加密后:"+encryptMD5_HexStr(password.getBytes()));//21232f297a57a5a743894a0e4a801fc3
System.out.println("SHA加密后:"+encryptSHA_HexStr(password.getBytes()));//d033e22ae348aeb5660fc2140aec35850c4da997
//poi-bin-3.17-20170915.tar.gz文件可以从http://poi.apache.org/download.html找到
String filePathname="C:\\Users\\hasee\\Downloads\\poi-bin-3.17-20170915.tar.gz";
File file=new File(filePathname);
System.out.println("MD5加密后:"+encryptMD5File_HexStr(file));//00d75d263fa8aaf991b4d9f538fa3499
System.out.println("SHA加密后:"+encryptSHAFile_HexStr(file));//30b4ddd491a1d016e48e10fbd92e0cc43a6cb196
}
}