S-DES
今天图老师小编要向大家分享个S-DES教程,过程简单易学,相信聪明的你一定能轻松get!
int p10[10]={3,5,2,7,4,10,1,9,8,6};
int p8[8]={6,3,7,4,8,5,10,9};
int ip[8]={2,6,3,1,4,8,5,7};
int ip1[8]={4,1,3,5,7,2,8,6};
int ep[8]={4,1,2,3,2,3,4,1};
int s0[4][4]={{1,0,3,2},{3,2,1,0},{0,2,1,3},{3,1,3,2}};
int s1[4][4]={{0,1,2,3},{2,0,1,3},{3,0,1,0},{2,1,0,3}};
char c='c';while(c=='c'c=='C'){
printf("********************************************");
printf("This is the S-DES program for our BOOK !");
printf("Please input a[8] 8bit MingWen:");
for(i=0;i8;i++)
scanf("%1d",&a[i]);
/* for(i=0;i8;i++)
printf("%1d",a[i]); */
printf("Please input k[10] 10bit MiShi:");
for(i=0;i10;i++)
scanf("%1d",&k[i]);
/* for(i=0;i10;i++)
printf("%1d",k[i]); *//*下面是算K1与K2*/
for(i=0;i10;i++)
t[i]=k[p10[i]-1];
temp=t[0];
for(i=0;i9;i++)
t[i]=t[i+1];
t[9]=t[4];
t[4]=temp;
for(i=0;i8;i++)
k1[i]=t[p8[i]-1];
temp=t[0];
temp1=t[1];
for(i=0;i8;i++)
t[i]=t[i+2];
t[8]=t[3];
t[9]=t[4];
t[3]=temp;
t[4]=temp1;
for(i=0;i8;i++)
k2[i]=t[p8[i]-1];/*下面是两次f函数运算与ip,ip`,SW得最后密文*/
for(i=0;i8;i++)
t[i]=a[ip[i]-1];for(i=0;i8;i++)
t1[i]=t[ep[i]+4-1];
for(i=0;i8;i++)
t1[i]=t1[i]^k1[i];
temp=s0[t1[0]*2+t1[3>[t1[1]*2+t1[2>;
temp1=s1[t1[4]*2+t1[7>[t1[5]*2+t1[6>;
p4[0]=temp/2;
p4[1]=temp%2;
p4[2]=temp1/2;
p4[3]=temp1%2;
for(i=0;i4;i++)
t2[i+4]=t1[i]^p4[i];for(i=0;i8;i++)
t1[i]=t2[ep[i]+4-1];
for(i=0;i8;i++)
t1[i]=t1[i]^k2[i];
temp=s0[t1[0]*2+t1[3>[t1[1]*2+t1[2>;
temp1=s1[t1[4]*2+t1[7>[t1[5]*2+t1[6>;
p4[0]=temp/2;
p4[1]=temp%2;
p4[2]=temp1/2;
p4[3]=temp1%2;
for(i=0;i4;i++)
t2[i]=t1[i]^p4[i];for(i=0;i8;i++)
m[i]=t2[ip1[i>;printf("MiWen Shi : ");
for(i=0;i8;i++)
printf("%d",m[i]);printf("C For Continue !Any Else Key To Exit !");
c=getch();}/*END while*/}