package sha1;
public class sha1 ;
// 摘要資料儲存陣列
private int digestint = new int[5];
// 計算過程中的臨時資料儲存陣列
private int tmpdata = new int[80];
// 計算sha-1摘要
private int process_input_bytes(byte bytedata)
// 摘要計算函式
encrypt();
} return 20;
} // 格式化輸入位元組陣列格式
private byte bytearrayformatdata(byte bytedata) else if (m == 56) else
// 補位後生成的新陣列內容
byte newbyte = new byte[size];
// 複製陣列的前面部分
system.arraycopy(bytedata, 0, newbyte, 0, n);
int l = n;
// 補1操作
newbyte[l++] = (byte) 0x80;
// 補0操作
for (int i = 0; i < zeros; i++)
// 計算資料長度,補資料長度位共8位元組,長整型
long n = (long) n * 8;
byte h8 = (byte) (n & 0xff);
byte h7 = (byte) ((n >> 8) & 0xff);
byte h6 = (byte) ((n >> 16) & 0xff);
byte h5 = (byte) ((n >> 24) & 0xff);
byte h4 = (byte) ((n >> 32) & 0xff);
byte h3 = (byte) ((n >> 40) & 0xff);
byte h2 = (byte) ((n >> 48) & 0xff);
byte h1 = (byte) (n >> 56);
newbyte[l++] = h1;
newbyte[l++] = h2;
newbyte[l++] = h3;
newbyte[l++] = h4;
newbyte[l++] = h5;
newbyte[l++] = h6;
newbyte[l++] = h7;
newbyte[l++] = h8;
return newbyte;
} private int f1(int x, int y, int z)
private int f2(int x, int y, int z)
private int f3(int x, int y, int z)
private int f4(int x, int y)
// 單元摘要計算函式
private void encrypt()
int tmpabcde = new int[5];
for (int i1 = 0; i1 < tmpabcde.length; i1++)
for (int j = 0; j <= 19; j++)
for (int k = 20; k <= 39; k++)
for (int l = 40; l <= 59; l++)
for (int m = 60; m <= 79; m++)
for (int i2 = 0; i2 < tmpabcde.length; i2++)
for (int n = 0; n < tmpdata.length; n++)
} // 4位元組陣列轉換為整數
private int bytearraytoint(byte bytedata, int i)
// 整數轉換為4位元組陣列
private void inttobytearray(int intvalue, byte bytedata, int i)
// 將位元組轉換為十六進製制字串
private static string bytetohexstring(byte ib) ;
char ob = new char[2];
ob[0] = digit[(ib >>> 4) & 0x0f];
ob[1] = digit[ib & 0x0f];
string s = new string(ob);
return s;
} // 將位元組陣列轉換為十六進製制字串
private static string bytearraytohexstring(byte bytearray)
return strdigest;
} // 計算sha-1摘要,返回相應的位元組陣列
public byte getdigestofbytes(byte bytedata)
return digest;
} // 計算sha-1摘要,返回相應的十六進製制字串
public string getdigestofstring(byte bytedata)
public static void main(string args)
}
執行結果:
7c4a8d09ca3762af61e59520943dc26494f8941b
如何應對SHA 1加密演算法公升級為SHA 256
url 如何應對sha 1加密演算法公升級為sha 256 url 經過權威機構證實,sha1加密演算法的不安全性越來越高,sha指紋造假成本越來越低,隨即微軟 谷歌等it巨頭相繼發布棄用sha1加密演算法宣告,第三方認證機構自2016年1月1日起,將全面停止簽發sha1演算法的數字證書。這一切表明...
Python md5與sha1加密演算法用法分析
md5 md5的全稱是message digest algorithm 5 資訊 摘要演算法 在90年代初由mit laboratory for computer science和rsa data security inc的ronald l.rivest開發出來,經md2 md3和md4發展而來。是...
如何使用java進行sha1加密
安全雜湊演算法 secure hash algorithm 主要適用於數字簽名 標準 digital signature standard dss 裡面定義的數字簽名演算法 digital signature algorithm dsa 在sha1演算法中,我們必須把原始訊息 字串,檔案等 轉換成位...