根據SHA256加密驗證電子檔案是否被串改過
驗證思路,檔案首次上傳時獲取檔案的code存入資料庫進行儲存,當檔案交接時重新獲取交接檔案的code跟資料庫原始的code進行比較,如果不同說明檔案被串改過了。
package com.platform.fileManipulation;
import java.io.File;
import java.io.FileInputStream;
import java.security.MessageDigest;
import java.security.NoSuchAlgorithmException;
/**
* 電子檔案數字簽名驗證
* 獲取電子檔案唯一的編碼,當檔案被修改時檔案的編碼將會發生改變
* @author w
*
*/
public class SHA256 {
private final static String SECURITY_CODE = "SHA-256";
public static void main(String[] args) {
File f = new File("D:\\aa.java");
FileInputStream fis;
try {
fis = new FileInputStream(f);
byte[] b = new byte[(int) f.length()];
fis.read(b);
String code = getSHA256StrJava(b);
System.out.println(code);
} catch (Exception e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
/**
* 利用java原生的摘要實現SHA256加密
*
* @param str
* 加密後的報文
* @return
*/
public static String getSHA256StrJava(byte[] b) {
MessageDigest messageDigest;
String encodeStr = null;
try {
messageDigest = MessageDigest.getInstance(SECURITY_CODE);
messageDigest.update(b);
encodeStr = byte2Hex(messageDigest.digest());
} catch (NoSuchAlgorithmException e) {
e.printStackTrace();
}
return encodeStr;
}
/**
* 將byte轉為16進位制
*
* @param bytes
* @return
*/
private static String byte2Hex(byte[] bytes) {
StringBuffer stringBuffer = new StringBuffer();
String temp = null;
for (int i = 0; i < bytes.length; i++) {
temp = Integer.toHexString(bytes[i] & 0xFF);
if (temp.length() == 1) {
// 1得到一位的進行補0操作
stringBuffer.append("0");
}
stringBuffer.append(temp);
}
return stringBuffer.toString();
}
}