版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請(qǐng)進(jìn)行舉報(bào)或認(rèn)領(lǐng)
文檔簡介
《密碼學(xué)》實(shí)驗(yàn)報(bào)告學(xué)號(hào):姓名:20第21頁共21頁實(shí)驗(yàn)一:DES加密算法實(shí)驗(yàn)?zāi)康尿?yàn)證DES加密算法。實(shí)驗(yàn)任務(wù)運(yùn)行加密程序,觀察加密結(jié)果。實(shí)驗(yàn)流程打開100行DES加密算法文件夾,運(yùn)行WjcDesTest.dsw,執(zhí)行程序。實(shí)驗(yàn)結(jié)果實(shí)驗(yàn)代碼#include"memory.h"#include"WjcDes.h"http:////////////////////////////////////////////////////////////////////////////initialpermutationIPconststaticcharIP_Table[64]={ 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};//finalpermutationIP^-1conststaticcharIPR_Table[64]={ 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};//expansionoperationmatrixstaticconstcharE_Table[48]={ 32,1,2,3,4,5,4,5,6,7,8,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};//32-bitpermutationfunctionPusedontheoutputoftheS-boxesconststaticcharP_Table[32]={ 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};//permutedchoicetable(key)conststaticcharPC1_Table[56]={ 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};//permutedchoicekey(table)conststaticcharPC2_Table[48]={ 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};//numberleftrotationsofpc1conststaticcharLOOP_Table[16]={ 1,1,2,2,2,2,2,2,1,2,2,2,2,2,2,1};//The(in)famousS-boxesconststaticcharS_Box[8][4][16]={ //S1 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, //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,14,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,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,15,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,14,7,4,10,8,13,15,12,9,0,3,5,6,11};//////////////////////////////////////////////////////////////////////////typedefbool(*PSubKey)[16][48];//////////////////////////////////////////////////////////////////////////staticvoidDES(charOut[8],charIn[8],constPSubKeypSubKey,boolType);//標(biāo)準(zhǔn)DES加/解密staticvoidSetKey(constchar*Key,intlen);//設(shè)置密鑰staticvoidSetSubKey(PSubKeypSubKey,constcharKey[8]);//設(shè)置子密鑰staticvoidF_func(boolIn[32],constboolKi[48]);//f函數(shù)staticvoidS_func(boolOut[32],constboolIn[48]);//S盒代替staticvoidTransform(bool*Out,bool*In,constchar*Table,intlen);//變換staticvoidXor(bool*InA,constbool*InB,intlen);//異或staticvoidRotateL(bool*In,intlen,intloop);//循環(huán)左移staticvoidByteToBit(bool*Out,constchar*In,intbits);//字節(jié)組轉(zhuǎn)換成位組staticvoidBitToByte(char*Out,constbool*In,intbits);//位組轉(zhuǎn)換成字節(jié)組//////////////////////////////////////////////////////////////////////////staticboolSubKey[2][16][48];//16圈子密鑰staticboolIs3DES;//3次DES標(biāo)志staticcharTmp[256],deskey[16];//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////CodestartsfromLine130//////////////////////////////////////////////////////////////////////////boolDes_Go(char*Out,char*In,longdatalen,constchar*Key,intkeylen,boolType){if(!(Out&&In&&Key&&(datalen=(datalen+7)&0xfffffff8))) returnfalse; SetKey(Key,keylen); if(!Is3DES) {//1次DES for(longi=0,j=datalen>>3;i<j;++i,Out+=8,In+=8) DES(Out,In,&SubKey[0],Type); }else {//3次DES加密:加(key0)-解(key1)-加(key0)解密::解(key0)-加(key1)-解(key0) for(longi=0,j=datalen>>3;i<j;++i,Out+=8,In+=8) { DES(Out,In,&SubKey[0],Type); DES(Out,Out,&SubKey[1],!Type); DES(Out,Out,&SubKey[0],Type); } } returntrue;}voidSetKey(constchar*Key,intlen){ memset(deskey,0,16); memcpy(deskey,Key,len>16?16:len); SetSubKey(&SubKey[0],&deskey[0]); Is3DES=len>8?(SetSubKey(&SubKey[1],&deskey[8]),true):false;}voidDES(charOut[8],charIn[8],constPSubKeypSubKey,boolType){staticboolM[64],tmp[32],*Li=&M[0],*Ri=&M[32];ByteToBit(M,In,64);Transform(M,M,IP_Table,64);if(Type==ENCRYPT) {for(inti=0;i<16;++i) {memcpy(tmp,Ri,32);F_func(Ri,(*pSubKey)[i]);Xor(Ri,Li,32);memcpy(Li,tmp,32);}} else {for(inti=15;i>=0;--i) {memcpy(tmp,Li,32);F_func(Li,(*pSubKey)[i]);Xor(Li,Ri,32);memcpy(Ri,tmp,32);} }Transform(M,M,IPR_Table,64);BitToByte(Out,M,64);}voidSetSubKey(PSubKeypSubKey,constcharKey[8]){staticboolK[64],*KL=&K[0],*KR=&K[28];ByteToBit(K,Key,64);Transform(K,K,PC1_Table,56);for(inti=0;i<16;++i) {RotateL(KL,28,LOOP_Table[i]);RotateL(KR,28,LOOP_Table[i]);Transform((*pSubKey)[i],K,PC2_Table,48);}}voidF_func(boolIn[32],constboolKi[48]){staticboolMR[48];Transform(MR,In,E_Table,48);Xor(MR,Ki,48);S_func(In,MR);Transform(In,In,P_Table,32);}voidS_func(boolOut[32],constboolIn[48]){for(chari=0,j,k;i<8;++i,In+=6,Out+=4) {j=(In[0]<<1)+In[5];k=(In[1]<<3)+(In[2]<<2)+(In[3]<<1)+In[4]; ByteToBit(Out,&S_Box[i][j][k],4);}}voidTransform(bool*Out,bool*In,constchar*Table,intlen){for(inti=0;i<len;++i)Tmp[i]=In[Table[i]-1];memcpy(Out,Tmp,len);}voidXor(bool*InA,constbool*InB,intlen){for(inti=0;i<len;++i)InA[i]^=InB[i];}voidRotateL(bool*In,intlen,intloop){memcpy(Tmp,In,loop);memcpy(In,In+loop,len-loop);memcpy(In+len-loop,Tmp,loop);}voidByteToBit(bool*Out,constchar*In,intbits){for(inti=0;i<bits;++i)Out[i]=(In[i>>3]>>(i&7))&1;}voidBitToByte(char*Out,constbool*In,intbits){memset(Out,0,bits>>3);for(inti=0;i<bits;++i)Out[i>>3]|=In[i]<<(i&7);}////////////////////////////////////////////////////////////////////////////CodeendsatLine231//////////////////////////////////////////////////////////////////////////實(shí)驗(yàn)二:SHA加密算法實(shí)驗(yàn)?zāi)康尿?yàn)證SHA加密算法。實(shí)驗(yàn)任務(wù)運(yùn)行加密程序,觀察加密結(jié)果。實(shí)驗(yàn)流程打開SHA文件夾,運(yùn)行WjcDesTest.dsw,執(zhí)行程序。實(shí)驗(yàn)結(jié)果實(shí)驗(yàn)代碼///////////////////////////////////////////////////////////////////////////////TheoneandonlyapplicationobjectCWinApptheApp;usingnamespacestd;int_tmain(intargc,TCHAR*argv[],TCHAR*envp[]){ intnRetCode=0; //initializeMFCandprintanderroronfailure// if(!AfxWinInit(::GetModuleHandle(NULL),NULL,::GetCommandLine(),0))// {// //TODO:changeerrorcodetosuityourneeds// cerr<<_T("FatalError:MFCinitializationfailed")<<endl;// nRetCode=1;// }// else// {// //TODO:codeyourapplication'sbehaviorhere.// CStringstrHello;// strHello.LoadString(IDS_HELLO);// cout<<(LPCTSTR)strHello<<endl;// } //TODO:Placecodehere. _tprintf(_T("\r\n[TestdriverfortheCSHA1class]\r\n")); TCHARtszInput[80]; while(true) { _tprintf(_T("\r\n1)Hashastring\r\n")); _tprintf(_T("2)Hashafile\r\n")); _tprintf(_T("3)Exit\r\n")); _tprintf(_T("\r\nEnter[1],[2]or[3]:")); //User'schoice fflush(stdin); _getts(tszInput); constintch=tszInput[0]; //Processuser'schoice if(ch==_T('3'))break; elseif(ch==_T('1'))HashString(); elseif(ch==_T('2'))HashFile(); else_tprintf(_T("\r\nInputerror:Enter1,2or3and[Enter].\r\n")); } returnnRetCode;}voidHashString(){ TCHARtszString[1024]; tszString[0]=0; _tprintf(_T("\r\nEnterthestringtohash:\r\n")); fflush(stdin); _getts(tszString); CSHA1sha1; sha1.Update((UINT_8*)tszString,_tcslen(tszString)*sizeof(TCHAR)); sha1.Final(); std::basic_string<TCHAR>strReport; sha1.ReportHashStl(strReport,CSHA1::REPORT_HEX_SHORT); _tprintf(_T("\r\nStringhashedto:\r\n")); _tprintf(strReport.c_str()); _tprintf(_T("\r\n"));}voidHashFile(){ TCHARtszFilename[1024]; tszFilename[0]=0; _tprintf(_T("\r\nFilename:")); fflush(stdin); _getts(tszFilename); CSHA1sha1; constboolbSuccess=sha1.HashFile(tszFilename); sha1.Final(); TCHARtszReport[41]; sha1.ReportHash(tszReport,CSHA1::REPORT_HEX_SHORT); if(bSuccess) { _tprintf(_T("\r\nFilecontentshashedto:\r\n")); _tprintf(tszReport); _tprintf(_T("\r\n")); } else _tprintf(_T("\r\nAnerroroccured(doesthefilereallyexist?).\r\n"));}實(shí)驗(yàn)三:簡單替換實(shí)驗(yàn)?zāi)康尿?yàn)證簡單替換加密算法。實(shí)驗(yàn)任務(wù)運(yùn)行加密程序,觀察加密結(jié)果。實(shí)驗(yàn)流程打開簡單替換文件夾,運(yùn)行yiwei.dsw,執(zhí)行代碼,觀察實(shí)驗(yàn)結(jié)果。實(shí)驗(yàn)結(jié)果實(shí)驗(yàn)代碼#include<iostream.h>#include<stdio.h>#defineWZ_COMMEND_NUM4char*WZ_Commend_Help[]={"替代法算法實(shí)現(xiàn)演示版本","====追求卓越,勇于創(chuàng)新====","",""};voidwz_printhelp();//界面intcaesar();//caesar替代算法函數(shù)intmain(){chark;caesar();cout<<"要繼續(xù)運(yùn)行本程序嗎<y,n>?"<<flush;cin>>k;while(k=='y'||k=='Y'){ caesar(); cout<<"要繼續(xù)運(yùn)行本程序嗎<y,n>?"<<flush;cin>>k;}return0;}intcaesar(){charM[10];//存儲(chǔ)輸入明文字符charC[10];//存儲(chǔ)加密密文字符charc;//接收輸入的變量inti,k1,k2;//控制變量wz_printhelp();for(i=0;i<10;i++){//對(duì)兩個(gè)數(shù)組進(jìn)行賦初值''M[i]=C[i]='';}cout<<"請(qǐng)輸入10個(gè)字符:"<<flush;//明文輸入for(i=0;i<10;i++){c=getchar();M[i]=c;}cout<<"你輸入的字符為:"<<flush;//明文顯示for(i=0;i<10;i++)cout<<M[i];cout<<endl//加密過程,獲取密文 <<"要加密嗎(y,n)?"<<flush;cin>>c;if(c=='y'||c=='Y'){cout<<"請(qǐng)輸入移位密碼(1-25):"<<flush;cin>>k1;cout<<"請(qǐng)重復(fù)移位密碼(1-25):"<<flush;cin>>k2;while(k1!=k2){cout<<"密碼不一致!請(qǐng)?jiān)俅屋斎?"<<endl;cout<<"請(qǐng)輸入移位密碼(1-25):"<<flush;cin>>k1;cout<<"請(qǐng)重復(fù)移位密碼(1-25):"<<flush;cin>>k2;}for(i=0;i<10;i++){//加密算法if((M[i]<'A'||M[i]>'Z')&&(M[i]<'a'||M[i]>'z')) C[i]=M[i]; elseif(M[i]>='A'&&M[i]<='Z')C[i]='A'+((M[i]-'A'+k1)%26); elseif(M[i]>='a'&&M[i]<='z')C[i]='a'+((M[i]-'a'+k1)%26); } cout<<"明文已加密!"<<endl;cout<<"密文顯示:"<<flush; for(i=0;i<10;i++){ cout<<C[i];} cout<<endl;}else{ cout<<"你未加密明文,不安全!"<<endl;return0;}cout<<"要查看明文嗎(y,n)?"<<flush;//解密過程,獲取明文cin>>c;if(c=='y'||c=='Y'){cout<<"進(jìn)行解密,請(qǐng)輸入密碼:"<<flush;cin>>k1;if(k1==k2){ for(i=0;i<10;i++){//解密算法if((C[i]<'A'||C[i]>'Z')&&(C[i]<'a'||C[i]>'z')) M[i]=C[i]; elseif(C[i]>='A'&&C[i]<='Z')M[i]='A'+((C[i]-'A'-k1+26)%26); elseif(C[i]>='a'&&C[i]<='z')M[i]='a'+((C[i]-'a'-k1+26)%26); } cout<<"明文顯示:"<<flush; for(i=0;i<10;i++)cout<<M[i];cout<<endl; }elsecout<<"密碼錯(cuò)誤!查看失??!"<<endl;}return0;}voidwz_printhelp(){inti;printf("\t");for(i=0;i<22;i++){printf("%c",5);}printf("\n");for(i=0;i<WZ_COMMEND_NUM;i++){printf("\t%c\t%s%c\n",5,WZ_Commend_Help[i],5);}printf("\t");for(i=0;i<22;i++){ printf("%c",5);}printf("\n");return;}實(shí)驗(yàn)四:簡易密鑰實(shí)現(xiàn)實(shí)驗(yàn)?zāi)康尿?yàn)證RSA加密算法。實(shí)驗(yàn)任務(wù)運(yùn)行加密程序
溫馨提示
- 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請(qǐng)下載最新的WinRAR軟件解壓。
- 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請(qǐng)聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
- 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會(huì)有圖紙預(yù)覽,若沒有圖紙預(yù)覽就沒有圖紙。
- 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
- 5. 人人文庫網(wǎng)僅提供信息存儲(chǔ)空間,僅對(duì)用戶上傳內(nèi)容的表現(xiàn)方式做保護(hù)處理,對(duì)用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對(duì)任何下載內(nèi)容負(fù)責(zé)。
- 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請(qǐng)與我們聯(lián)系,我們立即糾正。
- 7. 本站不保證下載資源的準(zhǔn)確性、安全性和完整性, 同時(shí)也不承擔(dān)用戶因使用這些下載資源對(duì)自己和他人造成任何形式的傷害或損失。
最新文檔
- 2024年環(huán)保公益宣傳品采購與服務(wù)合同3篇
- 2024年版:建筑工程專業(yè)分包合同模板
- 簡易警報(bào)器課程設(shè)計(jì)
- 工程經(jīng)濟(jì)學(xué)課程設(shè)計(jì)
- 航天能源課程設(shè)計(jì)思路
- 電工實(shí)訓(xùn)教學(xué)課程設(shè)計(jì)
- 《黑衣“超人”》課件
- 機(jī)械沖床課程設(shè)計(jì)題目
- 色彩搭配系統(tǒng)課程設(shè)計(jì)
- 米利根案件課程設(shè)計(jì)
- 傳承傳統(tǒng)文化教育教案(3篇模板)
- QBT 2460-1999 聚碳酸酯(PC)飲用水罐
- 2024新《公司法》修訂重點(diǎn)解讀課件
- 《電子吊秤校準(zhǔn)規(guī)范》公示件
- 《跟上兔子》繪本四年級(jí)第1季Can-I-Play-with-You教學(xué)課件
- 手術(shù)室敏感指標(biāo)構(gòu)建
- 書法創(chuàng)作設(shè)計(jì)方案
- MOOC 軟件工程概論-北京聯(lián)合大學(xué) 中國大學(xué)慕課答案
- 2023年鐵路工務(wù)安全規(guī)則正文
- 生態(tài)安全與環(huán)境風(fēng)險(xiǎn)評(píng)估預(yù)警機(jī)制
- MOOC 傳熱學(xué)-西安交通大學(xué) 中國大學(xué)慕課答案
評(píng)論
0/150
提交評(píng)論