DES加密算法的Java實現(xiàn)_第1頁
DES加密算法的Java實現(xiàn)_第2頁
DES加密算法的Java實現(xiàn)_第3頁
DES加密算法的Java實現(xiàn)_第4頁
DES加密算法的Java實現(xiàn)_第5頁
已閱讀5頁,還剩30頁未讀 繼續(xù)免費閱讀

下載本文檔

版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請進行舉報或認領(lǐng)

文檔簡介

1、JAVA實現(xiàn)DES加密算法 學(xué)號:091401223 姓名:高玉林 信息安全概論Java實現(xiàn)DES加密算法目錄DES算法概述3DES的加密過程4DES算法細節(jié)4DES的解密過程8源代碼與結(jié)果(使用Java實現(xiàn))9源代碼9運行結(jié)果截圖21默認密鑰(“這不是密碼”)21用戶自定義密鑰(以“nuaasillydes”為例)21總結(jié)22DES算法概述DES全稱為Data Encryption Standard,即數(shù)據(jù)加密標準,是一種使用密鑰加密的塊算法。它是ANSI的數(shù)據(jù)加密算法和ISO的DEA-1,成為一個世界范圍內(nèi)的標準已經(jīng)近30年。盡管DES帶有過去時代的特征,但是它很好的抵抗住了多年的密碼分析

2、,除可能的最強有力的敵手外,對其他的攻擊仍是安全的。DES是一個分組加密算法,它以64位為一組對數(shù)據(jù)進行加密。64位一組的明文從算法的一端輸入,64位的密文從另一端輸出。DES是一個對稱算法:加密與解密用的是同一算法(除密鑰編排不同以外)。密鑰的長度為56位,通常表示為64位的數(shù),但是每個第八位都用作奇偶校驗,可以忽略。密鑰可以是任意的56位的數(shù),且可在任意的時候改變。DES的整體結(jié)構(gòu)為:DES的加密過程DES的加密過程如下。(1)64位的密鑰經(jīng)子密鑰產(chǎn)生算法產(chǎn)生出16個子密鑰K1,K2,K16,分別供第1次,第2次,第16次加密迭代使用。(2)64位明文首先經(jīng)過初始置換IP(Initial

3、Permutation),將數(shù)據(jù)打亂重新排列并分成左右兩半。左邊32位構(gòu)成L,右邊32為構(gòu)成R。(3)由加密函數(shù)f實現(xiàn)子密鑰k1對R0的加密,結(jié)果得到32位的數(shù)據(jù)組f(R0,K1)。F(R0,K1)再與L0異或,又得到一個32位的數(shù)據(jù)組L0f(R0,K1)。以L0f(R0,K1)作為第2次加密迭代的R1,以R0作為第2次加密迭代的L1。至此,第1次加密迭代結(jié)束。(4)第2次加密迭代至第16次加密迭代分別用子密鑰K1,K2,K16進行,其過程與第1次加密過程相同。(5)第16次加密迭代后,左右部分并未交換,而是將R16與L16并在一起形成一個分組作為末置換(逆初始置換IP-1)的輸入,將數(shù)據(jù)重新

4、排列,便得到64位明文。至此,加密過程全部結(jié)束。Li=Ri-1Ri=Li-1f(Ri-1,Ki),其中i=1,2,3,16,表示異或綜上,可將DES的加密過程用如下的數(shù)學(xué)表達式描述:DES算法細節(jié)1. 子密鑰的產(chǎn)生64位密鑰經(jīng)過密鑰置換、循環(huán)左移、壓縮置換等變換,產(chǎn)生16個子密鑰。子密鑰的產(chǎn)生過程如圖所示,其中產(chǎn)生每一個子密鑰所需的循環(huán)左移位數(shù)在表中給出。表1 循環(huán)左移位數(shù)表迭代次數(shù)12345678910111213141516循環(huán)左移位數(shù)11222222122222211) 密鑰置換64位的密鑰分為8個字節(jié),每個字節(jié)的前7位是真正的密鑰位,而第8位是奇偶校檢位。置換選擇1的矩陣在表2中給出表

5、2 密鑰置換574941332517915850423426181025951433527191136052443663554739312315762544638302214661534537292113528201242) 壓縮置換選擇出一個48位的子密鑰Ki。表3 壓縮置換14171124153281562110231912426816727201324152313747553040514533484449395634534642503629322. 初始置換IP初始置換IP是Des的第一步密碼轉(zhuǎn)換。初始置換的作用在于將64位的明文打亂重排,并分成左右兩半。左邊32位作為L0,右邊32位作

6、為R0,供后面的加密迭代使用。初始置換IP的矩陣在表4中給出。表4 初始置換585042342618102605244362820124625446383022146645648403224168574941332517915951433527191136153453729211356355473931231573. 加密函數(shù)加密函數(shù)是DES的核心部分。它的作用是在第i輪加密迭代中用子密鑰Ki對Ri-1進行加密。1)擴展置換E在第i輪迭代加密中擴展置換E對32位的Ri-1的各位進行選擇和排列,產(chǎn)生一個48位的結(jié)果。這個操作的目的有兩個方面:產(chǎn)生了與密鑰同長度的數(shù)據(jù)以進行異或運算提供了更長的結(jié)果

7、,使得在替代 運算時能進行壓縮。擴展置換E的矩陣在表5中給出。表5 擴展置換E32123454567898910111213121314151617161718192021202122232425242526272829282930313212)S-盒代替壓縮后的密鑰與擴展分組異或之后,將48位的結(jié)果送入,進行代替運算。替代由8個代替盒(Substitution Box)完成。每個S-盒都有6位輸入,4位輸出,且這8個S-盒是不同的。DES的48位輸入被分為8個6位的分組,每一分租對應(yīng)一個S-盒代替操作:分組1由S-1操作。分組2由S-2操作,如此等等。表6列出了所有的8個S-盒。S1:14,

8、4,13,1,2,15,11,8,3,10,6,12,5,9,0,7,0,15,7,4,14,2,13,1,10,6,12,11,9,5,3,8,4,1,14,8,13,6,2,11,15,12,9,7,3,10,5,0,15,12,8,2,4,9,1,7,5,11,3,14,10,0,6,13,S2:15,1,8,14,6,11,3,4,9,7,2,13,12,0,5,10,3,13,4,7,15,2,8,14,12,0,1,10,6,9,11,5,0,14,7,11,10,4,13,1,5,8,12,6,9,3,2,15,13,8,10,1,3,15,4,2,11,6,7,12,0,5,1

9、4,9,S3:10,0,9,14,6,3,15,5,1,13,12,7,11,4,2,8,13,7,0,9,3,4,6,10,2,8,5,14,12,11,15,1,13,6,4,9,8,15,3,0,11,1,2,12,5,10,14,7,1,10,13,0,6,9,8,7,4,15,14,3,11,5,2,12,S4:7,13,14,3,0,6,9,10,1,2,8,5,11,12,4,15,13,8,11,5,6,15,0,3,4,7,2,12,1,10,14,9,10,6,9,0,12,11,7,13,15,1,3,14,5,2,8,4,3,15,0,6,10,1,13,8,9,4,5

10、,11,12,7,2,14,S5:2,12,4,1,7,10,11,6,8,5,3,15,13,0,14,9,14,11,2,12,4,7,13,1,5,0,15,10,3,9,8,6,4,2,1,11,10,13,7,8,15,9,12,5,6,3,0,14,11,8,12,7,1,14,2,13,6,15,0,9,10,4,5,3,S6:12,1,10,15,9,2,6,8,0,13,3,4,14,7,5,11,10,15,4,2,7,12,9,5,6,1,13,14,0,11,3,8,9,14,15,5,2,8,12,3,7,0,4,10,1,13,11,6,4,3,2,12,9,5,1

11、5,10,11,14,1,7,6,0,8,13,S7:4,11,2,14,15,0,8,13,3,12,9,7,5,10,6,1,13,0,11,7,4,9,1,10,14,3,5,12,2,15,8,6,1,4,11,13,12,3,7,14,10,15,6,8,0,5,9,2,6,11,13,8,1,4,10,7,9,5,0,15,14,2,3,12,S8:13,2,8,4,6,15,11,1,10,9,3,14,5,0,12,7,1,15,13,8,10,3,7,4,12,5,6,11,0,14,9,2,7,11,4,1,9,12,14,2,0,6,10,13,15,3,5,8,2,1,

12、14,7,4,10,8,13,15,12,9,0,3,5,6,11,輸入位以一種非常特殊的方式確定了S-盒的項。假定將S-盒的6位的輸入標記為b1,b2,b3,b4,b5,b6,則b1和b6組合構(gòu)成了一個2位的數(shù),從0到3(二進制),它對應(yīng)著表中的一行。從b2到b5構(gòu)成了一個4位的數(shù),從0到15(二進制),對應(yīng)表中的一列。得到對應(yīng)S-盒的數(shù),轉(zhuǎn)換成二進制即得到輸出的替代值。3)P-盒置換S-盒代替運算后的32位輸出依照P-盒進行置換。該置換把每一位輸入位映射到輸出位,任一位不能被映射兩次,也不能被略去。表7給出了每位移至的位置。表7 P-盒置換1672021 29122817115232651

13、8311028241432273919133062211425最后。將P-盒置換的結(jié)果與最初的64位分組的左半部分異或,然后左右不分交換,接著開始下一輪。4. 逆初始置換IP-1逆初始置換IP-1是初始置換IP的逆置換。它把第16輪加密迭代的結(jié)果打亂重排,形成64位密文。加密過程結(jié)束。表8 逆初始置換IP-140848165624643239747155523633138646145422623037545135321612936444125220602835343115119592734242105018582633141949175725初始置換與逆初始置換的密碼意義不大,因為沒有密鑰的參

14、與。它們的作用是把輸入數(shù)據(jù)打亂重排,以打亂原始輸入數(shù)據(jù)的原有格式。DES的解密過程由于Des的運算是對稱算法,所以加密和解密可共用同一個運算,只是子密鑰使用的順序不同。把64位密文當(dāng)做明文輸出,而且第1輪解密迭代使用子密鑰K16,第2輪解密迭代使用K15,第16輪解密迭代使用子密鑰K1,最后輸出的便是64為明文。解密過程可用如下的數(shù)學(xué)公式描述:Li=Ri-1Li-1=Rif(Li,Ki),其中i=1,2,3,16,表示異或源代碼與結(jié)果(使用Java實現(xiàn))源代碼package des;import java.util.Scanner;public class FinalDES / IP:初始置換

15、 IPundo:逆初始置換private static final int IP = 58, 50, 42, 34, 26, 18, 10, 2, 60, 52,44, 36, 28, 20, 12, 4, 62, 54, 46, 38, 30, 22, 14, 6, 64, 56, 48,40, 32, 24, 16, 8, 57, 49, 41, 33, 25, 17, 9, 1, 59, 51, 43, 35,27, 19, 11, 3, 61, 53, 45, 37, 29, 21, 13, 5, 63, 55, 47, 39, 31,23, 15, 7 ; / 64private s

16、tatic final int IPundo = 40, 8, 48, 16, 56, 24, 64, 32, 39, 7,47, 15, 55, 23, 63, 31, 38, 6, 46, 14, 54, 22, 62, 30, 37, 5, 45,13, 53, 21, 61, 29, 36, 4, 44, 12, 52, 20, 60, 28, 35, 3, 43, 11,51, 19, 59, 27, 34, 2, 42, 10, 50, 18, 58, 26, 33, 1, 41, 9, 49,17, 57, 25 ; / 64/* * 將DES的密鑰由64位減到56位 PC_ji

17、anduan 密鑰置換 PC_yasuo 壓縮置換 從56位中選取48位 */private static final int PC_jianduan = 57, 49, 41, 33, 25, 17, 9, 1,58, 50, 42, 34, 26, 18, 10, 2, 59, 51, 43, 35, 27, 19, 11, 3, 60,52, 44, 36, 63, 55, 47, 39, 31, 23, 15, 7, 62, 54, 46, 38, 30, 22,14, 6, 61, 53, 45, 37, 29, 21, 13, 5, 28, 20, 12, 4 ; / 56priv

18、ate static final int PC_yasuo = 14, 17, 11, 24, 1, 5, 3, 28, 15, 6,21, 10, 23, 19, 12, 4, 26, 8, 16, 7, 27, 20, 13, 2, 41, 52, 31, 37,47, 55, 30, 40, 51, 45, 33, 48, 44, 49, 39, 56, 34, 53, 46, 42, 50,36, 29, 32 ; / 48/* * 擴展置換E P-盒置換 */private static final int E = 32, 1, 2, 3, 4, 5, 4, 5, 6, 7, 8,

19、9, 8, 9,10, 11, 12, 13, 12, 13, 14, 15, 16, 17, 16, 17, 18, 19, 20, 21, 20,21, 22, 23, 24, 25, 24, 25, 26, 27, 28, 29, 28, 29, 30, 31, 32, 1 ; / 48private static final int P = 16, 7, 20, 21, 29, 12, 28, 17, 1, 15, 23,26, 5, 18, 31, 10, 2, 8, 24, 14, 32, 27, 3, 9, 19, 13, 30, 6, 22,11, 4, 25 ; / 32/*

20、 * S-盒代替 */private static final int S_Box = /S_Box1 14, 4, 13, 1, 2, 15, 11, 8, 3, 10, 6, 12, 5, 9, 0, 7 , 0, 15, 7, 4, 14, 2, 13, 1, 10, 6, 12, 11, 9, 5, 3, 8 , 4, 1, 14, 8, 13, 6, 2, 11, 15, 12, 9, 7, 3, 10, 5, 0 , 15, 12, 8, 2, 4, 9, 1, 7, 5, 11, 3, 14, 10, 0, 6, 13 , /S_Box2 15, 1, 8, 14, 6, 11,

21、 3, 4, 9, 7, 2, 13, 12, 0, 5, 10 , 3, 13, 4, 7, 15, 2, 8, 14, 12, 0, 1, 10, 6, 9, 11, 5 , 0, 14, 7, 11, 10, 4, 13, 1, 5, 8, 12, 6, 9, 3, 2, 15 , 13, 8, 10, 1, 3, 15, 4, 2, 11, 6, 7, 12, 0, 5, 14, 9 , /S_Box3 10, 0, 9, 14, 6, 3, 15, 5, 1, 13, 12, 7, 11, 4, 2, 8 , 13, 7, 0, 9, 3, 4, 6, 10, 2, 8, 5, 14

22、, 12, 11, 15, 1 , 13, 6, 4, 9, 8, 15, 3, 0, 11, 1, 2, 12, 5, 10, 14, 7 , 1, 10, 13, 0, 6, 9, 8, 7, 4, 15, 14, 3, 11, 5, 2, 12 , /S_Box4 7, 13, 14, 3, 0, 6, 9, 10, 1, 2, 8, 5, 11, 12, 4, 15 , 13, 8, 11, 5, 6, 15, 0, 3, 4, 7, 2, 12, 1, 10, 14, 9 , 10, 6, 9, 0, 12, 11, 7, 13, 15, 1, 3, 14, 5, 2, 8, 4 ,

23、 3, 15, 0, 6, 10, 1, 13, 8, 9, 4, 5, 11, 12, 7, 2, 14 , /S_Box5 2, 12, 4, 1, 7, 10, 11, 6, 8, 5, 3, 15, 13, 0, 14, 9 , 14, 11, 2, 12, 4, 7, 13, 1, 5, 0, 15, 10, 3, 9, 8, 6 , 4, 2, 1, 11, 10, 13, 7, 8, 15, 9, 12, 5, 6, 3, 0, 14 , 11, 8, 12, 7, 1, 14, 2, 13, 6, 15, 0, 9, 10, 4, 5, 3 , /S_Box6 12, 1, 1

24、0, 15, 9, 2, 6, 8, 0, 13, 3, 4, 14, 7, 5, 11 , 10, 15, 4, 2, 7, 12, 9, 5, 6, 1, 13, 14, 0, 11, 3, 8 , 9, 14, 15, 5, 2, 8, 12, 3, 7, 0, 4, 10, 1, 13, 11, 6 , 4, 3, 2, 12, 9, 5, 15, 10, 11, 14, 1, 7, 6, 0, 8, 13 , /S_Box7 4, 11, 2, 14, 15, 0, 8, 13, 3, 12, 9, 7, 5, 10, 6, 1 , 13, 0, 11, 7, 4, 9, 1, 10

25、, 14, 3, 5, 12, 2, 15, 8, 6 , 1, 4, 11, 13, 12, 3, 7, 14, 10, 15, 6, 8, 0, 5, 9, 2 , 6, 11, 13, 8, 1, 4, 10, 7, 9, 5, 0, 15, 14, 2, 3, 12 , /S_Box8 13, 2, 8, 4, 6, 15, 11, 1, 10, 9, 3, 14, 5, 0, 12, 7 , 1, 15, 13, 8, 10, 3, 7, 4, 12, 5, 6, 11, 0, 14, 9, 2 , 7, 11, 4, 1, 9, 12, 14, 2, 0, 6, 10, 13, 1

26、5, 3, 5, 8 , 2, 1, 14, 7, 4, 10, 8, 13, 15, 12, 9, 0, 3, 5, 6, 11 ;/* * 每輪移動的位數(shù) */private static final int LeftMove = 1, 1, 2, 2, 2, 2, 2, 2, 1, 2, 2, 2,2, 2, 2, 1 ;private byte key1;/* * 構(gòu)造函數(shù) * param key 密鑰 */public FinalDES(String key) this.key1 = key.getBytes();/* * 將byte類型轉(zhuǎn)換成二進制 * * param key2 *

27、 return */public int ByteToInt(byte key2) int a = new int64;int temp = new int8;/for (int i = 0; i < key2.length; i+) /System.out.println(key2i);/for (int i = 0; i < 8; i+) tempi = key2i;if (tempi < 0) tempi += 256;tempi %= 256;for (int i = 0; i < 8; i+) for (int j = 0; j < 8; j+) a(i

28、 * 8) + 7) - j = tempi % 2;tempi = tempi / 2;/for (int i = 0; i < key2.length; i+) /System.out.println(ai);/return a;/* * * 密鑰置換之后移位 分為左右兩個部分,分別進行移位 * * param key * 置換之后的密鑰 * param count * 第count輪運算 * return 返回移動之后的密鑰 */public void setLeftMove(int key, int count) int left = new int28;int right =

29、new int28;int left1 = new int28;int right1 = new int28;for (int i = 0; i < left.length; i+) lefti = keyi;righti = keyi + 28;if (LeftMovecount = 1) for (int i = 0; i < left.length - 1; i+) left1i = lefti + 1;right1i = righti + 1;left127 = left0;right127 = right0;if (LeftMovecount = 2) for (int

30、i = 0; i < left.length - 2; i+) left1i = lefti + 2;right1i = righti + 2;left127 = left1;right127 = right1;left126 = left0;right126 = right0;for (int i = 0; i < left.length; i+) keyi = left1i;keyi + 28 = right1i;/* * 合并數(shù)組 * * param after * 是合并之后的分組 是從0合并 * param insertLocation 合并的位置 * param bef

31、ore * 合并的分組 * param start * 合并開始的位置 * param length * 合并的長度 */public void merge(byte after, int insertLocation, byte before,int start, int length) for (int i = 0; i < length; i+) afteri + insertLocation = beforestart + i;/* * 密鑰置換 從64位變成56位 * * param key * 原始密鑰 */public int PCTrans(int key) int re

32、sult = new int56;for (int i = 0; i < result.length; i+) resulti = keyPC_jianduani - 1;return result;/* * 將密鑰進行16次循環(huán),存到二維數(shù)組中 每次的密鑰應(yīng)該為48位 * * param data * 提交的密鑰應(yīng)該為64位 * return */public int EveryKey(int key) int result = new int1648;int test;test = PCTrans(key);for (int i = 0; i < 16; i+) setLeft

33、Move(test, i);for (int j = 0; j < 48; j+) resultij = testPC_yasuoj - 1;return result;/* * 異或運算 * * param a * param b * return */public int XOR(int a, int b) int result = new intb.length;for (int i = 0; i < b.length; i+) /resulti = ai = bi ? 1 : 0;resulti = ai + bi;if (ai + bi = 2) resulti = 0;

34、return result;/* * 對右半部分的擴展置換 32-48位 同時進行與密鑰的異或 * * param right * count 第幾輪運算 * author dadan * return */public int EtransAndXOR(int right, int count, int EveryKey) int resultSet = new int48;for (int i = 0; i < 48; i+) resultSeti = rightEi - 1;int result = XOR(resultSet, EveryKeycount);return resu

35、lt;/* * S-盒代替 48位32位 P-盒置換 * * param data * 壓縮后的密鑰與擴展分組異或成的48位 * return */public int SBoxAndPTrans(int data) /for (int i = 0; i < data.length; i+) /System.out.println(datai);/沒問題int temp = new int86;int S_box_value = new int8;int resultSet = new int32;int result = new int32;for (int i = 0; i <

36、 8; i+) for (int j = 0; j < 6; j+) tempij = datai * 6 + j;/ 取出S_BOX中的十進制數(shù)并轉(zhuǎn)化為二進制/直接使用乘以2的n次方表示S_box_valuei = S_Boxitempi0 * 2 + tempi5tempi1* 8 + tempi2 * 4 + tempi3 * 2 + tempi4;for (int k = 0; k < 4; k+) resultSet(i * 4 + 3) - k = S_box_valuei % 2;S_box_valuei = S_box_valuei / 2;/for (int i

37、= 0; i < resultSet.length; i+) /System.out.println(resultSeti);/ 進行P-盒置換for (int i = 0; i < 32; i+) resulti = resultSetPi - 1;return result;/* * 進行密鑰的每一次置換 * * param data * 密鑰 64位 * param count * 輪數(shù) * param isEncrypt * 加密=1,解密=0 * param everyKey * 16次循環(huán)的二維數(shù)組 */public void everychange(int data,

38、 int count, int isEncrypt,int everyKey) int left = new int32;int right = new int32;int left1 = new int32;int right1 = new int32;for (int i = 0; i < right1.length; i+) lefti = datai;righti = datai + 32;int temp = SBoxAndPTrans(EtransAndXOR(right, count, everyKey);right1 = XOR(temp, left);for (int

39、i = 0; i < 32; i+) left1i = righti;/for (int i = 0; i < temp.length; i+) /System.out.println(tempi);/ if (isEncrypt = 1) && (count = 15) | (isEncrypt = 0)&& (count = 0) for (int j = 0; j < 32; j+) dataj = right1j;dataj + 32 = left1j;else for (int j = 0; j < 32; j+) dataj

40、= right1j;dataj + 32 = left1j;/* * 將最終的結(jié)果64位二進制數(shù)據(jù)轉(zhuǎn)換成byte * * param data * return */public byte changeResultToByte(int data) byte result = new byte8;for (int i = 0; i < 8; i+) for (int j = 0; j < 8; j+) /resulti += data8 * i + j *( 2 (7 - j); 發(fā)現(xiàn)加密錯誤 找到是這里的錯誤 以為2的n次方是2n ?!/2的n次方 在java中應(yīng)為 Math.po

41、w(2,n)resulti += data8 * i + j * Math.pow(2, (7 - j);for (int i = 0; i < 8; i+) resulti %= 256;if (resulti > 128) resulti -= 255;return result;/* * 不足8位 進行補充 * 補充的數(shù)為待補充的位數(shù) 這樣可以在去除補充位數(shù)的得到刪除位數(shù) * param data * return */public byte addByte(byte data) int datalength = data.length;int addlength = 8 -

42、 (datalength % 8);/注意:解密過程中由增加了8位int totalLength = datalength + addlength;byte result = new bytetotalLength;merge(result, 0, data, 0, datalength);for (int i = datalength; i < result.length; i+) resulti = (byte) addlength;return result;/* * 整合的加密過程 * param data 待加密的數(shù)據(jù) * param isEnceypt 加密/解密 1加密 0

43、加密 * return */public byte finalencrypt(byte data, int isEnceypt) byte wholekey = addByte(key1);byte wholedata = addByte(data);int wholecount = wholedata.length / 8;byte result = new bytewholedata.length;/將超出64位的數(shù)據(jù)分次進行加密for (int i = 0; i < wholecount; i+) byte tempkey = new byte8;byte tempdata = n

44、ew byte8;merge(tempkey, 0, wholekey, 0, 8);merge(tempdata, 0, wholedata, i * 8, 8);byte tempResult = finalDES(tempdata, tempkey, isEnceypt);merge(result, i * 8, tempResult, 0, 8);/將分次加密的數(shù)據(jù)進行整合/ 解密過程 去除補充位byte deciphering = null;if (isEnceypt = 0) int deleteLenght = resultwholedata.length - 9;/-9 = -

45、8 -1 -8的原因是在解密過程中addbyte()又加入了8位deleteLenght = (deleteLenght >= 1) && (deleteLenght <= 8) ? deleteLenght: 0;/判斷是否有補充位deciphering = new bytewholedata.length - 8;/-8的原因是在解密過程中addbyte()又加入了8位boolean delete = true;/判斷是否為補充位for (int i = 0; i < deleteLenght; i+) /最后確認最后的連續(xù)deleteLenght長度是否

46、都為補充位/不是則沒有補充位if (deleteLenght != resultwholedata.length - 9 - i) delete = false;if (delete = true) merge(deciphering, 0, result, 0, wholedata.length- deleteLenght - 8);return (isEnceypt = 1) ? result : deciphering;/* * 進行加密/解密 * param data * param key * param isEncrypt * return */public byte finalD

47、ES(byte data, byte key, int isEncrypt) int everykey = EveryKey(ByteToInt(key);byte result = Encrypt(ByteToInt(data), isEncrypt, everykey);return result;/* * 加密/解密過程 * param data * param isEncrypt * param everykey * return */public byte Encrypt(int data, int isEncrypt, int everykey) int IPdata = new int64;int ResetIPdata = new int64;for (int i = 0; i < IPdata.length; i+) IP

溫馨提示

  • 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請下載最新的WinRAR軟件解壓。
  • 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
  • 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會有圖紙預(yù)覽,若沒有圖紙預(yù)覽就沒有圖紙。
  • 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
  • 5. 人人文庫網(wǎng)僅提供信息存儲空間,僅對用戶上傳內(nèi)容的表現(xiàn)方式做保護處理,對用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對任何下載內(nèi)容負責(zé)。
  • 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請與我們聯(lián)系,我們立即糾正。
  • 7. 本站不保證下載資源的準確性、安全性和完整性, 同時也不承擔(dān)用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。

評論

0/150

提交評論