回答
什麼:
import java.security.MessageDigest;
import java.security.NoSuchAlgorithmException;
import java.util.Formatter;
public static String SHAsum(byte[] convertme) throws NoSuchAlgorithmException{
MessageDigest md = MessageDigest.getInstance("SHA-1");
return byteArray2Hex(md.digest(convertme));
}
private static String byteArray2Hex(final byte[] hash) {
Formatter formatter = new Formatter();
for (byte b : hash) {
formatter.format("%02x", b);
}
return formatter.toString();
}
我只是在尋找計算sha1的方式 - 格式並不重要 – Mike 2009-10-04 15:06:05
@jarnbjo你是對的,但OP沒有要求。 – 2009-10-22 12:38:44
@PascalThivent但另一位程序員可能會停下來使用這個答案,包括錯誤(畢竟這是部分原因)。關於散列有足夠的模糊性(文檔類似於「通過sha-1散列這些字符串連接來計算此簽名」,而沒有提及如何對輸入字符進行編碼並對散列輸出進行字符串化)。 – 2011-11-02 11:27:39
這一小段代碼,我們用它來轉換爲SHA-1,但需要String
代替Byte[]
看到這個javadoc進一步信息
import java.io.UnsupportedEncodingException;
import java.security.MessageDigest;
import java.security.NoSuchAlgorithmException;
public class DoSHA1 {
private static String convToHex(byte[] data) {
StringBuilder buf = new StringBuilder();
for (int i = 0; i < data.length; i++) {
int halfbyte = (data[i] >>> 4) & 0x0F;
int two_halfs = 0;
do {
if ((0 <= halfbyte) && (halfbyte <= 9))
buf.append((char) ('0' + halfbyte));
else
buf.append((char) ('a' + (halfbyte - 10)));
halfbyte = data[i] & 0x0F;
} while(two_halfs++ < 1);
}
return buf.toString();
}
public static String SHA1(String text) throws NoSuchAlgorithmException,
UnsupportedEncodingException {
MessageDigest md = MessageDigest.getInstance("SHA-1");
byte[] sha1hash = new byte[40];
md.update(text.getBytes("iso-8859-1"), 0, text.length());
sha1hash = md.digest();
return convToHex(sha1hash);
}
}
你可以自己做,或者你可以依靠已經證明可以工作的庫,如Commons Codec。該DigestUtils
類有幾個方法來計算散列..
從CommonCodec DigestUtils執行的摘要計算後的十六進制丁文如圖之前:
MessageDigest md = MessageDigest.getInstance("SHA-1");
return byteArray2Hex(md.digest(convertme));
應http://commons.apache.org/codec/apidocs/src-html/org/apache/commons/codec/binary/Hex.html#line.129:
private static final char[] DIGITS_LOWER =
{'0', '1', '2', '3', '4', '5', '6', '7',
'8', '9', 'a', 'b', 'c', 'd', 'e', 'f'};
private static final char[] DIGITS_UPPER =
{'0', '1', '2', '3', '4', '5', '6', '7',
'8', '9', 'A', 'B', 'C', 'D', 'E', 'F'};
protected static char[] encodeHex(byte[] data, char[] toDigits) {
int l = data.length;
char[] out = new char[l << 1];
// two characters form the hex value.
for (int i = 0, j = 0; i < l; i++) {
out[j++] = toDigits[(0xF0 & data[i]) >>> 4];
out[j++] = toDigits[0x0F & data[i]];
}
return out;
}
protected static int toDigit(char ch, int index) throws DecoderException {
int digit = Character.digit(ch, 16);
if (digit == -1) {
throw new DecoderException(
"Illegal hexadecimal character "
+ ch + " at index " + index);
}
return digit;
}
public static String exampleSha1(String convertme){
MessageDigest md = MessageDigest.getInstance("SHA-1");
byte[] encodeHex = md.digest(convertme));
return new String(encodeHex);
}
我只是用這個來計算DEX文件內的哈希值總和,它與被保存在DEX文件中的值進行比較。
我知道這個代碼沒有很好的風格,但它更多的PoC,只需要一些對時間非常關鍵的研究。可能有人可以使用它!
class CheckDex{
public boolean checkSHA1(File f) throws IOException, NoSuchAlgorithmException{
RandomAccessFile raf = new RandomAccessFile(f, "r");
byte[] sig = new byte[20];
raf.seek(0xC);
for(int i = 0; i < 20; i++){
sig[i] = (byte) raf.readUnsignedByte();
}
MessageDigest md = MessageDigest.getInstance("SHA-1");
byte[] code = new byte[(int) (raf.length()-32)];
for(int i = 0; i < code.length; i++){
code[i] = (byte) raf.readUnsignedByte();
}
byte[] comsig = md.digest(code);
raf.close();
return Arrays.equals(sig,comsig);
}
}
如何使用本:
公共類sha1Calculate {
public static void main(String[] args)throws Exception
{
File file = new File("D:\\Android Links.txt");
String outputTxt= "";
String hashcode = null;
try {
FileInputStream input = new FileInputStream(file);
ByteArrayOutputStream output = new ByteArrayOutputStream();
byte [] buffer = new byte [65536];
int l;
while ((l = input.read (buffer)) > 0)
output.write (buffer, 0, l);
input.close();
output.close();
byte [] data = output.toByteArray();
MessageDigest digest = MessageDigest.getInstance("SHA-1");
byte[] bytes = data;
digest.update(bytes, 0, bytes.length);
bytes = digest.digest();
StringBuilder sb = new StringBuilder();
for(byte b : bytes)
{
sb.append(String.format("%02X", b));
}
System.out.println("Digest(in hex format):: " + sb.toString());
}catch (FileNotFoundException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (NoSuchAlgorithmException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}
- 1. SHA1 HMAC一個字節數組與Arduino
- 2. Powershell V2.0 SHA1計算
- 3. 計算MB的字節數
- 4. 計算字節
- 5. 使用ASP.NET Core計算SHA1
- 6. 如何計算SHA1在iphone
- 7. 計算字符串或字節數組的CRC32
- 8. C++ 2字節數組計算(字符數組,字符串和整數)
- 9. 數組PHP計算字數
- 10. 快速計算兩個數組之間的相等字節數
- 11. 改進算法的:在計數設置位字節數組
- 12. NSData的SHA1計數
- 13. 獲取字節數組的SHA1校驗碼在JavaScript?
- 14. 計算SHA1哈希算法Powershell V2.0
- 15. 計算PROGMEM使用的字節數
- 16. 班級人數的字節計算
- 17. 以68HC11彙編語言計算字節數組的校驗和
- 18. 計算字節數組總和的最快方法
- 19. 計算數組中的字母字符?
- 20. RSA算法:字節到字節數組的字符串
- 21. 使用另一個字節列表/數組來計算字節列表/數組中的出現次數
- 22. 計算數組中出現的數字
- 23. 在java中計算數組的字數
- 24. 計算數組中的數字
- 25. 如何構建字節數組幀並計算校驗
- 26. 如何將request.body轉換爲字節數組以計算MD5?
- 27. 從部分SHA1總和計算SHA1文件總和
- 28. 使用T-SQL計算'nvarchar'字符串的SHA1哈希值
- 29. VB.NET的例子來計算一個字符串或字節數組的CRC16
- 30. 創建torrent文件時計算(sha1)「件」
我一直在尋找同樣的東西。一種用Java計算SHA1的方法。我得到了什麼?兩個答案。有很多「這是錯誤的」,「這太可怕了」。然而,寫這些評論的人並沒有寫出「好」的答案。 – Shiki 2012-03-05 22:45:11