aes算法加密c语言完整程序

aes算法加密c语言完整程序

ID:14321575

大小:47.50 KB

页数:21页

时间:2018-07-27

aes算法加密c语言完整程序_第1页
aes算法加密c语言完整程序_第2页
aes算法加密c语言完整程序_第3页
aes算法加密c语言完整程序_第4页
aes算法加密c语言完整程序_第5页
资源描述:

《aes算法加密c语言完整程序》由会员上传分享,免费在线阅读,更多相关内容在行业资料-天天文库

1、AES算法加密C语言完整程序#include#include"aes.h"#include"commonage.h"#definebyteunsignedchar#defineBPOLY0x1b//!

2、#defineKEYLENGTH16//!

3、ofs-box.bytexdata*sBoxInv;//!

4、F(2^8).t^=(t<<1)^(t&0x80?BPOLY:0);}while(t!=1);//Cyclicpropertiesensurethati<255.powTbl[255]=powTbl[0];//255='-0',254=-1,etc.}voidCalcSBox(byte*sBox){bytexdatai,rot;bytexdatatemp;bytexdataresult;//FillallentriesofsBox[].i=0;do{//InverseinGF(2^8).if(i>0){temp=powTbl[255-

5、logTbl[i]];}else{temp=0;}//AffinetransformationinGF(2).result=temp^0x63;//StartwithaddingavectorinGF(2).for(rot=0;rot<4;rot++){//Rotateleft.temp=(temp<<1)

6、(temp>>7);//AddrotatedbyteinGF(2).result^=temp;}//Putresultintable.sBox[i]=result;}while(++i!=0);}voidCalcSBoxInv(b

7、yte*sBox,byte*sBoxInv){bytexdatai=0;bytexdataj=0;//IteratethroughallelementsinsBoxInvusingi.do{//SearchthroughsBoxusingj.cleardog();do{//Checkifcurrentjistheinverseofcurrenti.if(sBox[j]==i){//Ifso,setsBoxIncandindicatesearchfinished.sBoxInv[i]=j;j=255;}}while(++j!=0);}w

8、hile(++i!=0);}voidCycleLeft(byte*row){//Cycle4bytesinanarrayleftonce.bytexdatatemp=row[0];row[0]=row[1];row[1]=row[2];row[2]=row[3];row[3]=temp;}voidInvMixColumn(byte*column){bytexdatar0,r1,r2,r3;r0=column[1]^column[2]^column[3];r1=column[0]^column[2]^column[3];r2=colum

9、n[0]^column[1]^column[3];r3=column[0]^column[1]^column[2];column[0]=(column[0]<<1)^(column[0]&0x80?BPOLY:0);co

当前文档最多预览五页,下载文档查看全文

此文档下载收益归作者所有

当前文档最多预览五页,下载文档查看全文
温馨提示:
1. 部分包含数学公式或PPT动画的文件,查看预览时可能会显示错乱或异常,文件下载后无此问题,请放心下载。
2. 本文档由用户上传,版权归属用户,天天文库负责整理代发布。如果您对本文档版权有争议请及时联系客服。
3. 下载前请仔细阅读文档内容,确认文档内容符合您的需求后进行下载,若出现内容与标题不符可向本站投诉处理。
4. 下载文档时可能由于网络波动等原因无法下载或下载错误,付费完成后未能成功下载的用户请联系客服处理。