Bootstrap

Des加解密结果不一致

转载地址:http://blog.csdn.net/xfworld/article/details/6046968

DES(Data Encryption Standard)算法,于1977年得到美国政府的正式许可,是一种用56位密钥来加密64位数据的方法。一般密码长度为8个字节,其中56位加密密钥,每个第8位都用作奇偶校验。 

   DES的几种工作方式 

第一种电子密本方式(ECB) 
   将明文分成n个64比特分组,如果明文长度不是64比特的倍数,则在明文末尾填充适当数目的规定符号。对明文组用给定的密钥分别进行加密,行密文C=(C0,C1,……,Cn-1)其中Ci=DES(K,xi),i=0,1,…..,n-1。 

  第二种密文分组链接方式(CBC) 
   在CBC方式下,每个明文组xi在加密前与先一组密文按位模二加后,再送到DES加密,CBC方式克服了ECB方式报内组重的缺点,但由于明文组加密前与一组密文有关,因此前一组密文的错误会传播到下一组。 

  第三种密文反馈方式(CFB),可用于序列密码 
   明文X=(x0,x1,……,xn-1),其中xi由t个比特组成0   第四种输出反馈方式(OFB),可用于序列密码 
   与CFB唯一不同的是OFB是直接取DES输出的t个比特,而不是取密文的t个比特,其余都与CFB相同。但它取的是DES的输出,所以它克服了CFB的密文错误传播的缺点 

   DES的几种填补方式 
   DES是对64位数据的加密算法,如数据位数不足64位的倍数,需要填充,补充到64位的倍数。 

   NoPadding 
   API或算法本身不对数据进行处理,加密数据由加密双方约定填补算法。例如若对字符串数据进行加解密,可以补充/0或者空格,然后trim 

   PKCS5Padding 
   加密前:数据字节长度对8取余,余数为m,若m>0,则补足8-m个字节,字节数值为8-m,即差几个字节就补几个字节,字节数值即为补充的字节数,若为0则补充8个字节的8 
   解密后:取最后一个字节,值为m,则从数据尾部删除m个字节,剩余数据即为加密前的原文 

   SSL3Padding 
   SSL3.0协议定义的填补算法 


   java默认的DES算法实现方式为DES/ECB/PKCS5Padding。若c++或其他语言与java进行加解密互通,若java采用默认实现,另一方工作方式和填补算法必须都是用ECB和PKCS5Padding。

 

以下为java和C++可以互通的加解密算法

[c-sharp]  view plain copy
  1. import java.lang.reflect.*;  
  2.   
  3. import sun.misc.BASE64Encoder;  
  4.   
  5. public class des_zm {  
  6. /* 
  7. * static final是表示了只读,切能在同一个进程空间内的多个 Instance间共享 
  8. */  
  9. private static String strDefaultKey = "testpass";  
  10. public String digestHexStr;  
  11. // 28  
  12. static final int pc_1_cp[] = { 57, 49, 41, 33, 25, 17, 9, 1, 58, 50, 42,  
  13.     34, 26, 18, 10, 2, 59, 51, 43, 35, 27, 19, 11, 3, 60, 52, 44, 36 };  
  14. // 28  
  15. static final int pc_1_dp[] = { 63, 55, 47, 39, 31, 23, 15, 7, 62, 54, 46,  
  16.     38, 30, 22, 14, 6, 61, 53, 45, 37, 29, 21, 13, 5, 28, 20, 12, 4 };  
  17. // 48  
  18. static final int pc_2p[] = { 14, 17, 11, 24, 1, 5, 3, 28, 15, 6, 21, 10,  
  19.     23, 19, 12, 4, 26, 8, 16, 7, 27, 20, 13, 2, 41, 52, 31, 37, 47, 55,  
  20.     30, 40, 51, 45, 33, 48, 44, 49, 39, 56, 34, 53, 46, 42, 50, 36, 29,  
  21.     32 };  
  22. // 16  
  23. static final int ls_countp[] = { 1, 1, 2, 2, 2, 2, 2, 2, 1, 2, 2, 2, 2, 2,  
  24.     2, 1 };  
  25. // 64  
  26. static final int iip_tab_p[] = { 58, 50, 42, 34, 26, 18, 10, 2, 60, 52, 44,  
  27.     36, 28, 20, 12, 4, 62, 54, 46, 38, 30, 22, 14, 6, 64, 56, 48, 40,  
  28.     32, 24, 16, 8, 57, 49, 41, 33, 25, 17, 9, 1, 59, 51, 43, 35, 27,  
  29.     19, 11, 3, 61, 53, 45, 37, 29, 21, 13, 5, 63, 55, 47, 39, 31, 23,  
  30.     15, 7 };  
  31. // 64  
  32. static final int _iip_tab_p[] = { 40, 8, 48, 16, 56, 24, 64, 32, 39, 7, 47,  
  33.     15, 55, 23, 63, 31, 38, 6, 46, 14, 54, 22, 62, 30, 37, 5, 45, 13,  
  34.     53, 21, 61, 29, 36, 4, 44, 12, 52, 20, 60, 28, 35, 3, 43, 11, 51,  
  35.     19, 59, 27, 34, 2, 42, 10, 50, 18, 58, 26, 33, 1, 41, 9, 49, 17,  
  36.     57, 25 };  
  37. // 48  
  38. static final int e_r_p[] = { 32, 1, 2, 3, 4, 5, 4, 5, 6, 7, 8, 9, 8, 9, 10,  
  39.     11, 12, 13, 12, 13, 14, 15, 16, 17, 16, 17, 18, 19, 20, 21, 20, 21,  
  40.     22, 23, 24, 25, 24, 25, 26, 27, 28, 29, 28, 29, 30, 31, 32, 1 };  
  41. // 32  
  42. static final int local_PP[] = { 16, 7, 20, 21, 29, 12, 28, 17, 1, 15, 23,  
  43.     26, 5, 18, 31, 10, 2, 8, 24, 14, 32, 27, 3, 9, 19, 13, 30, 6, 22,  
  44.     11, 4, 25 };  
  45. // [8][4][16]  
  46. static final int ccom_SSS_p[][][] = {  
  47.     { { 14, 4, 13, 1, 2, 15, 11, 8, 3, 10, 6, 12, 5, 9, 0, 7 },  
  48.       { 0, 15, 7, 4, 14, 2, 13, 1, 10, 6, 12, 11, 9, 5, 3, 8 },  
  49.       { 4, 1, 14, 8, 13, 6, 2, 11, 15, 12, 9, 7, 3, 10, 5, 0 },  
  50.       { 15, 12, 8, 2, 4, 9, 1, 7, 5, 11, 3, 14, 10, 0, 6, 13 } },  
  51.   
  52.     { { 15, 1, 8, 14, 6, 11, 3, 4, 9, 7, 2, 13, 12, 0, 5, 10 },  
  53.       { 3, 13, 4, 7, 15, 2, 8, 14, 12, 0, 1, 10, 6, 9, 11, 5 },  
  54.       { 0, 14, 7, 11, 10, 4, 13, 1, 5, 8, 12, 6, 9, 3, 2, 15 },  
  55.       { 13, 8, 10, 1, 3, 15, 4, 2, 11, 6, 7, 12, 0, 5, 14, 9 } },  
  56.   
  57.     { { 10, 0, 9, 14, 6, 3, 15, 5, 1, 13, 12, 7, 11, 4, 2, 8 },  
  58.       { 13, 7, 0, 9, 3, 4, 6, 10, 2, 8, 5, 14, 12, 11, 15, 1 },  
  59.       { 13, 6, 4, 9, 8, 15, 3, 0, 11, 1, 2, 12, 5, 10, 14, 7 },  
  60.       { 1, 10, 13, 0, 6, 9, 8, 7, 4, 15, 14, 3, 11, 5, 2, 12 } },  
  61.   
  62.     { { 7, 13, 14, 3, 0, 6, 9, 10, 1, 2, 8, 5, 11, 12, 4, 15 },  
  63.       { 13, 8, 11, 5, 6, 15, 0, 3, 4, 7, 2, 12, 1, 10, 14, 9 },  
  64.       { 10, 6, 9, 0, 12, 11, 7, 13, 15, 1, 3, 14, 5, 2, 8, 4 },  
  65.       { 3, 15, 0, 6, 10, 1, 13, 8, 9, 4, 5, 11, 12, 7, 2, 14 } }, /* 
  66.                      * err 
  67.                      * on 
  68.                      */  
  69.   
  70.     { { 2, 12, 4, 1, 7, 10, 11, 6, 8, 5, 3, 15, 13, 0, 14, 9 },  
  71.       { 14, 11, 2, 12, 4, 7, 13, 1, 5, 0, 15, 10, 3, 9, 8, 6 }, /* 
  72.                      * err 
  73.                      * on 
  74.                      */  
  75.       { 4, 2, 1, 11, 10, 13, 7, 8, 15, 9, 12, 5, 6, 3, 0, 14 },  
  76.       { 11, 8, 12, 7, 1, 14, 2, 13, 6, 15, 0, 9, 10, 4, 5, 3 } },  
  77.   
  78.     { { 12, 1, 10, 15, 9, 2, 6, 8, 0, 13, 3, 4, 14, 7, 5, 11 },  
  79.       { 10, 15, 4, 2, 7, 12, 9, 5, 6, 1, 13, 14, 0, 11, 3, 8 },  
  80.       { 9, 14, 15, 5, 2, 8, 12, 3, 7, 0, 4, 10, 1, 13, 11, 6 },  
  81.       { 4, 3, 2, 12, 9, 5, 15, 10, 11, 14, 1, 7, 6, 0, 8, 13 } },  
  82.   
  83.     { { 4, 11, 2, 14, 15, 0, 8, 13, 3, 12, 9, 7, 5, 10, 6, 1 },  
  84.       { 13, 0, 11, 7, 4, 9, 1, 10, 14, 3, 5, 12, 2, 15, 8, 6 },  
  85.       { 1, 4, 11, 13, 12, 3, 7, 14, 10, 15, 6, 8, 0, 5, 9, 2 },  
  86.       { 6, 11, 13, 8, 1, 4, 10, 7, 9, 5, 0, 15, 14, 2, 3, 12 } },  
  87.   
  88.     { { 13, 2, 8, 4, 6, 15, 11, 1, 10, 9, 3, 14, 5, 0, 12, 7 },  
  89.       { 1, 15, 13, 8, 10, 3, 7, 4, 12, 5, 6, 11, 0, 14, 9, 2 },  
  90.       { 7, 11, 4, 1, 9, 12, 14, 2, 0, 6, 10, 13, 15, 3, 5, 8 },  
  91.       { 2, 1, 14, 7, 4, 10, 8, 13, 15, 12, 9, 0, 3, 5, 6, 11 } } };  
  92.   
  93. byte[][] C = new byte[17][28];  
  94. byte[][] D = new byte[17][28];  
  95. byte[][] K = new byte[17][48];  
  96.   
  97. public des_zm() {  
  98.    return;  
  99. }  
  100.   
  101. /* 
  102. * iu2b把int转换成byte 
  103. */  
  104. private static byte iu2b(int input) {  
  105.    byte output1;  
  106.    output1 = (byte) (input & 0xff);  
  107.    return output1;  
  108. }  
  109.   
  110. /* 
  111. * b2iu把byte按照不考虑正负号的原则的"升位"成int程序, 因为java没有unsigned运算 
  112. */  
  113. private static int b2iu(byte b) {  
  114.    return b < 0 ? b & 0x7F + 128 : b;  
  115. }  
  116.   
  117. /* 
  118. * byteHEX(),用来把一个byte类型的数转换成十六进制的ASCII表示, 
  119. * 因为java中的byte的toString无法实现这一点,我们又没有C语言中的 sprintf(outbuf,"%02X",ib) 
  120. */  
  121. public static String byteHEX(byte ib) {  
  122.    char[] Digit = { '0''1''2''3''4''5''6''7''8''9''A',  
  123.      'B''C''D''E''F' };  
  124.    char[] ob = new char[2];  
  125.    ob[0] = Digit[(ib >>> 4) & 0X0F];  
  126.    ob[1] = Digit[ib & 0X0F];  
  127.    String s = new String(ob);  
  128.    return s;  
  129. }  
  130.   
  131. /* 
  132. * desMemcpy是一个内部使用的byte数组的块拷贝函数, 从input的inpos开始把len长度的 
  133. * 字节拷贝到output的outpos位置开始 
  134. */  
  135. private void desMemcpy(byte[] output, byte[] input, int outpos, int inpos,  
  136.     int len) {  
  137.    int i;  
  138.    for (i = 0; i < len; i++)  
  139.     output[outpos + i] = input[inpos + i];  
  140. }  
  141.   
  142. private void Fexpand0(byte[] inbyte[] out) {  
  143.    int divide;  
  144.    int i, j;  
  145.    byte temp1;  
  146.   
  147.    for (i = 0; i < 8; i++) {  
  148.     divide = 7;  
  149.     for (j = 0; j < 8; j++) {  
  150.      temp1 = in[i];  
  151.      out[8 * i + j] = iu2b((b2iu(temp1) >>> divide) & 1);  
  152.      divide--;  
  153.     }  
  154.    }  
  155. }  
  156.   
  157. private void FLS(byte[] bits, byte[] buffer, int count) {  
  158.    int i, j;  
  159.    for (i = 0; i < 28; i++) {  
  160.     buffer[i] = bits[(i + count) % 28];  
  161.    }  
  162. }  
  163.   
  164. private void Fson(byte[] cc, byte[] dd, byte[] kk) {  
  165.    int i, j;  
  166.    byte[] buffer = new byte[56];  
  167.    for (i = 0; i < 28; i++)  
  168.     buffer[i] = cc[i];  
  169.   
  170.    for (i = 28; i < 56; i++)  
  171.     buffer[i] = dd[i - 28];  
  172.   
  173.    for (i = 0; i < 48; i++)  
  174.     kk[i] = buffer[pc_2p[i] - 1];  
  175. }  
  176.   
  177. private void Fsetkeystar(byte[] bits) {  
  178.    int i, j;  
  179.   
  180.    for (i = 0; i < 28; i++)  
  181.     C[0][i] = bits[pc_1_cp[i] - 1];  
  182.    for (i = 0; i < 28; i++)  
  183.     D[0][i] = bits[pc_1_dp[i] - 1];  
  184.    for (j = 0; j < 16; j++) {  
  185.     FLS(C[j], C[j + 1], ls_countp[j]);  
  186.     FLS(D[j], D[j + 1], ls_countp[j]);  
  187.     Fson(C[j + 1], D[j + 1], K[j + 1]);  
  188.    }  
  189. }  
  190.   
  191. private void Fiip(byte[] text, byte[] ll, byte[] rr) {  
  192.    int i, j;  
  193.    byte[] buffer = new byte[64];  
  194.    byte[] tmp = new byte[64];  
  195.    Fexpand0(text, buffer);  
  196.   
  197.    for (i = 0; i < 32; i++)  
  198.     ll[i] = buffer[iip_tab_p[i] - 1];  
  199.   
  200.    for (i = 0; i < 32; i++)  
  201.     rr[i] = buffer[iip_tab_p[i + 32] - 1];  
  202. }  
  203.   
  204. private void Fs_box(byte[] aa, byte[] bb) {  
  205.    int i, j, k, m;  
  206.    int y, z;  
  207.    byte[] ss = new byte[8];  
  208.    m = 0;  
  209.    for (i = 0; i < 8; i++) {  
  210.     j = 6 * i;  
  211.     y = b2iu(aa[j]) * 2 + b2iu(aa[j + 5]);  
  212.     z = b2iu(aa[j + 1]) * 8 + b2iu(aa[j + 2]) * 4 + b2iu(aa[j + 3]) * 2  
  213.       + b2iu(aa[j + 4]);  
  214.     ss[i] = iu2b(ccom_SSS_p[i][y][z]);  
  215.     y = 3;  
  216.     for (k = 0; k < 4; k++) {  
  217.      bb[m++] = iu2b((b2iu(ss[i]) >>> y) & 1);  
  218.      y--;  
  219.     }  
  220.   
  221.    }  
  222. }  
  223.   
  224. private void FF(int n, byte[] ll, byte[] rr, byte[] LL, byte[] RR) {  
  225.    int i, j;  
  226.    byte[] buffer = new byte[64], tmp = new byte[64];  
  227.    for (i = 0; i < 48; i++)  
  228.     buffer[i] = rr[e_r_p[i] - 1];  
  229.    for (i = 0; i < 48; i++)  
  230.     buffer[i] = iu2b((b2iu(buffer[i]) + b2iu(K[n][i])) & 1);  
  231.   
  232.    Fs_box(buffer, tmp);  
  233.   
  234.    for (i = 0; i < 32; i++)  
  235.     buffer[i] = tmp[local_PP[i] - 1];  
  236.   
  237.    for (i = 0; i < 32; i++)  
  238.     RR[i] = iu2b((b2iu(buffer[i]) + b2iu(ll[i])) & 1);  
  239.   
  240.    for (i = 0; i < 32; i++)  
  241.     LL[i] = rr[i];  
  242. }  
  243.   
  244. private void _Fiip(byte[] text, byte[] ll, byte[] rr) {  
  245.    int i, j;  
  246.    byte[] tmp = new byte[64];  
  247.    for (i = 0; i < 32; i++)  
  248.     tmp[i] = ll[i];  
  249.    for (i = 32; i < 64; i++)  
  250.     tmp[i] = rr[i - 32];  
  251.    for (i = 0; i < 64; i++)  
  252.     text[i] = tmp[_iip_tab_p[i] - 1];  
  253. }  
  254.   
  255. private void Fcompress016(byte[] outbyte[] in) {  
  256.    int times;  
  257.    int i, j;  
  258.   
  259.    for (i = 0; i < 16; i++) {  
  260.     times = 3;  
  261.     in[i] = '0';  
  262.     for (j = 0; j < 4; j++) {  
  263.      in[i] = iu2b(b2iu(in[i]) + (b2iu(out[i * 16 + j]) << times));  
  264.      times--;  
  265.     }  
  266.    }  
  267. }  
  268.   
  269. void Fcompress0(byte[] outbyte[] in) {  
  270.    int times;  
  271.    int i, j;  
  272.   
  273.    for (i = 0; i < 8; i++) {  
  274.     times = 7;  
  275.     in[i] = 0;  
  276.     for (j = 0; j < 8; j++) {  
  277.      in[i] = iu2b(b2iu(in[i]) + (b2iu(out[i * 8 + j]) << times));  
  278.      times--;  
  279.     }  
  280.    }  
  281. }  
  282.   
  283. private void Fencrypt0(byte[] text, byte[] mtext) {  
  284.    byte[] ll = new byte[64], rr = new byte[64], LL = new byte[64], RR = new byte[64];  
  285.    byte[] tmp = new byte[64];  
  286.    int i, j;  
  287.    Fiip(text, ll, rr);  
  288.   
  289.    for (i = 1; i < 17; i++) {  
  290.     FF(i, ll, rr, LL, RR);  
  291.     for (j = 0; j < 32; j++) {  
  292.      ll[j] = LL[j];  
  293.      rr[j] = RR[j];  
  294.     }  
  295.    }  
  296.   
  297.    _Fiip(tmp, rr, ll);  
  298.   
  299.    Fcompress0(tmp, mtext);  
  300. }  
  301.   
  302. private void FDES(byte[] key, byte[] text, byte[] mtext) {  
  303.    byte[] tmp = new byte[64];  
  304.    Fexpand0(key, tmp);  
  305.    Fsetkeystar(tmp);  
  306.    Fencrypt0(text, mtext);  
  307. }  
  308.   
  309. /* 加密 */  
  310. public int ENCRYPT(byte[] key, byte[] s, byte[] d, int len) {  
  311.    int i, j;  
  312.    byte[] cData = new byte[8];  
  313.    byte[] cEncryptData = new byte[8];  
  314.    for (i = 0; i < len; i += 8) {  
  315.     if ((i + 8) > len) {  
  316.      desMemcpy(cData, s, 0, i, len - i);  
  317.      for (j = len - i; j < 8; j++)  
  318.       cData[j] = 0;  
  319.     } else  
  320.      desMemcpy(cData, s, 0, i, 8);  
  321.     FDES(key, cData, cEncryptData);  
  322.     desMemcpy(d, cEncryptData, i, 0, 8);  
  323.   
  324.    }  
  325.    return i;  
  326. }  
  327.   
  328. private void Fdiscrypt0(byte[] mtext, byte[] text) {  
  329.    byte[] ll = new byte[64], rr = new byte[64], LL = new byte[64], RR = new byte[64];  
  330.    byte[] tmp = new byte[64];  
  331.    int i, j;  
  332.    Fiip(mtext, ll, rr);  
  333.   
  334.    for (i = 16; i > 0; i--) {  
  335.     FF(i, ll, rr, LL, RR);  
  336.     for (j = 0; j < 32; j++) {  
  337.      ll[j] = LL[j];  
  338.      rr[j] = RR[j];  
  339.     }  
  340.    }  
  341.   
  342.    _Fiip(tmp, rr, ll);  
  343.   
  344.    Fcompress0(tmp, text);  
  345. }  
  346.   
  347. /*************************************************************************** 
  348. * function: DES parameter: u_char * key ; key for encrypt u_char * mtext ; 
  349. * encipher data u_char * text ; plain data return: none 
  350. **************************************************************************/  
  351. private void _FDES(byte[] key, byte[] mtext, byte[] text) {  
  352.    byte[] tmp = new byte[64];  
  353.    Fexpand0(key, tmp);  
  354.    Fsetkeystar(tmp);  
  355.    Fdiscrypt0(mtext, text);  
  356. }  
  357.   
  358. /* 解密 */  
  359. public int DECRYPT(byte[] key, byte[] s, byte[] d, int len) {  
  360.    int i;  
  361.    byte[] cData = new byte[8];  
  362.    byte[] cEncryptData = new byte[8];  
  363.    for (i = 0; i < len; i += 8) {  
  364.     desMemcpy(cEncryptData, d, 0, i, 8);  
  365.     _FDES(key, cEncryptData, cData);  
  366.     desMemcpy(s, cData, i, 0, 8);  
  367.    }  
  368.    return i;  
  369. }  
  370.   
  371. public static byte[] hexStr2ByteArr(String strIn) {  
  372.    byte[] arrB = strIn.getBytes();  
  373.    int iLen = arrB.length;  
  374.   
  375.    // 两个字符表示一个字节,所以字节数组长度是字符串长度除以2  
  376.    byte[] arrOut = new byte[iLen / 2];  
  377.    for (int i = 0; i < iLen; i = i + 2) {  
  378.     String strTmp = new String(arrB, i, 2);  
  379.     arrOut[i / 2] = (byte) Integer.parseInt(strTmp, 16);  
  380.    }  
  381.    return arrOut;  
  382. }  
  383.   
  384. public static void main(String args[]) {  
  385.   
  386.    des_zm m = new des_zm();  
  387.    String s = "111111";  
  388.    String miwen = m.Encode(s);  
  389.    System.out.println("密文:[" + miwen + "]");  
  390.   
  391.    String minwen = m.Decode(miwen).toString();  
  392.    System.out.println("明文:[" + minwen + "]");  
  393. }  
  394.   
  395. public String Encode(String str) {  
  396.    int i1;  
  397.   
  398.    String digestHexStr;  
  399.    byte[] byte2 = new byte[3000];  
  400.    byte[] byte1 = str.getBytes();  
  401.   
  402.    i1 = ENCRYPT(strDefaultKey.getBytes(), byte1, byte2, byte1.length);  
  403.    digestHexStr = "";  
  404.    for (int i = 0; i < i1; i++) {  
  405.     digestHexStr += byteHEX(byte2[i]);  
  406.    }  
  407.   
  408.    return digestHexStr;  
  409. }  
  410.   
  411. public String Decode(String str) {  
  412.    int i2;  
  413.   
  414.    byte[] byteMingW = new byte[3000]; // 密文  
  415.    byte[] byteMiW = new byte[3000];  
  416.   
  417.    des_zm m = new des_zm();  
  418.    byteMiW = m.hexStr2ByteArr(str);  
  419.   
  420.    i2 = m.DECRYPT(m.strDefaultKey.getBytes(), byteMingW, byteMiW,  
  421.      byteMiW.length);  
  422.   
  423.    BASE64Encoder base64encoder = new BASE64Encoder();  
  424.    return new String(byteMingW, 0, i2);  
  425. }  
  426.   
  427. }  

 

C++

[cpp]  view plain copy
  1. // testdes_.cpp : 定义控制台应用程序的入口点。  
  2. //  
  3.   
  4. #include "stdafx.h"  
  5.   
  6. #define KEY "testtest"  
  7.   
  8. #define u_char unsigned char  
  9. #define _u8 unsigned char  
  10. #define _u16 unsigned short  
  11. #define _u32 unsigned int  
  12.   
  13.   
  14. void FDES(u_char *key,u_char *text,u_char *mtext);  
  15. void _FDES(u_char *key,u_char *mtext,u_char *text);  
  16. void Fencrypt0(u_char *text,u_char *mtext);  
  17. void Fdiscrypt0(u_char *mtext,u_char *text);  
  18. void Fexpand0(u_char *in,u_char *out);  
  19. void Fcompress0(u_char *out,u_char *in);  
  20. void Fcompress016(u_char *out,u_char *in);  
  21. void Fsetkeystar(u_char bits[64]);  
  22. void FLS(u_char *bits,u_char *buffer,int count);  
  23. void Fson(u_char *cc,u_char *dd,u_char *kk);  
  24. void Fiip(u_char *text,u_char *ll,u_char *rr);  
  25. void _Fiip(u_char *text,u_char *ll,u_char *rr);  
  26. void FF(int n,u_char *ll,u_char *rr,u_char *LL,u_char *RR);  
  27. void Fs_box(u_char *aa,u_char *bb);  
  28.   
  29. u_char C[17][28],D[17][28],K[17][48];  
  30.   
  31. int DECRYPT( u_char *key, unsigned char *s,unsigned char *d, unsigned short len );  
  32. int ENCRYPT( u_char *key, unsigned char *s,unsigned char *d,unsigned short len );  
  33.   
  34. int _tmain(int argc, _TCHAR* argv[])  
  35. {  
  36. printf("len=[%d]/n",3);  
  37.   
  38. int len,i,n;  
  39. char str[100]; //明文  
  40. char mstr[100]; //密文  
  41.   
  42. memset(str,0,sizeof(str)); //增加  
  43. strcpy(str,"111111");  
  44.   
  45. printf("明文=[%s]/n",str);  
  46. printf("密钥=[%s]/n",KEY);  
  47.   
  48. len=strlen(str);  
  49.   
  50. //加密  
  51. i=ENCRYPT( (unsigned char *)KEY, (unsigned char *)str,(unsigned char *)mstr,len );  
  52.   
  53. printf("len=[%d]/n",len);  
  54. printf("密文=[/n");  
  55. for (n = 0; n < i; n++)  
  56. {  
  57.    printf("%02X", mstr[n] & 0x00FF ); //增加  
  58. }  
  59. printf("]/n");  
  60. printf("i=[%d]/n",i);  
  61.   
  62. memset(str,0,sizeof(str));  
  63.   
  64. //解密  
  65. i=DECRYPT((unsigned char *) KEY, (unsigned char *)str,(unsigned char *)mstr, len );  
  66. printf("len=[%d]/n",len);  
  67. printf("明文=[%s]/n",str);  
  68. printf("i=[%d]/n",i);  
  69.   
  70. }  
  71.   
  72. /***************************************************************************** 
  73. * function: DES 
  74. * parameter: u_char * key ; key for encrypt 
  75. *   u_char * text ; plain text  
  76. *   u_char * mtext ; encipher result 
  77. * return: none 
  78. *****************************************************************************/  
  79. void FDES(u_char *key,u_char *text,u_char *mtext)  
  80. {  
  81. u_char tmp[64];  
  82. Fexpand0(key,tmp);  
  83. Fsetkeystar(tmp);  
  84. Fencrypt0(text,mtext);  
  85. }  
  86.   
  87. /***************************************************************************** 
  88. * function: DES 
  89. * parameter: u_char * key ; key for encrypt 
  90. *   u_char * mtext ; encipher data  
  91. *   u_char * text ; plain data 
  92. * return: none 
  93. *****************************************************************************/  
  94. void _FDES(u_char *key,u_char *mtext,u_char *text)  
  95. {  
  96. u_char tmp[64];  
  97. Fexpand0(key,tmp);  
  98. Fsetkeystar(tmp);  
  99. Fdiscrypt0(mtext,text);  
  100. }  
  101.   
  102. void Fencrypt0(u_char *text,u_char *mtext)  
  103. {  
  104. u_char ll[64],rr[64],LL[64],RR[64];  
  105. u_char tmp[64];  
  106. int i,j;  
  107. Fiip(text,ll,rr);  
  108.   
  109. for (i=1;i<17;i++)  
  110. {  
  111.    FF(i,ll,rr,LL,RR);  
  112.    for (j=0;j<32;j++)  
  113.    {  
  114.     ll[j]=LL[j];  
  115.     rr[j]=RR[j];  
  116.    }  
  117. }  
  118.   
  119. _Fiip(tmp,rr,ll);  
  120.   
  121. Fcompress0(tmp,mtext);  
  122. }  
  123.   
  124.   
  125. void Fdiscrypt0(u_char *mtext,u_char *text)  
  126. {  
  127. u_char ll[64],rr[64],LL[64],RR[64];  
  128. u_char tmp[64];  
  129. int i,j;  
  130. Fiip(mtext,ll,rr);  
  131.   
  132. for (i=16;i>0;i--)  
  133. {  
  134.    FF(i,ll,rr,LL,RR);  
  135.    for (j=0;j<32;j++)  
  136.    {  
  137.     ll[j]=LL[j];  
  138.     rr[j]=RR[j];  
  139.    }  
  140. }  
  141.   
  142. _Fiip(tmp,rr,ll);  
  143.   
  144. Fcompress0(tmp,text);  
  145. }  
  146.   
  147.   
  148. void Fexpand0(u_char *in,u_char *out)  
  149. {  
  150. int divide;  
  151. int i,j;  
  152.   
  153. for (i=0;i<8;i++)  
  154. {  
  155.    divide=0x80;  
  156.    for (j=0;j<8;j++)  
  157.    {  
  158.     *out++=(in[i]/divide)&1;  
  159.     divide/=2;  
  160.    }  
  161. }  
  162. }  
  163.   
  164.   
  165. void Fcompress0(u_char *out,u_char *in)  
  166. {  
  167. int times;  
  168. int i,j;  
  169.   
  170. for (i=0;i<8;i++)  
  171. {  
  172.    times=0x80;  
  173.    in[i]=0;  
  174.    for (j=0;j<8;j++)  
  175.    {  
  176.     in[i]+=(*out++)*times;  
  177.     times/=2;  
  178.    }  
  179. }  
  180. }  
  181. void Fcompress016(u_char *out,u_char *in)  
  182. {  
  183. int times;  
  184. int i,j;  
  185.   
  186. for (i=0;i<16;i++)  
  187. {  
  188.    times=0x8;  
  189.    in[i]='0';  
  190.    for (j=0;j<4;j++)  
  191.    {  
  192.     in[i]+=(*out++)*times;  
  193.     times/=2;  
  194.    }  
  195. }  
  196. }  
  197.   
  198. int pc_1_cp[28]={  
  199. 57,49,41,33,25,17,9  
  200. ,1,58,50,42,34,26,18  
  201. ,10,2,59,51,43,35,27  
  202. ,19,11,3,60,52,44,36};  
  203. int pc_1_dp[28]={  
  204. 63,55,47,39,31,23,15  
  205. ,7,62,54,46,38,30,22  
  206. ,14,6,61,53,45,37,29  
  207. ,21,13,5,28,20,12,4};  
  208. int pc_2p[48]={  
  209. 14,17,11,24,1,5,  
  210. 3,28,15,6,21,10,  
  211. 23,19,12,4,26,8,  
  212. 16,7,27,20,13,2,  
  213. 41,52,31,37,47,55,  
  214. 30,40,51,45,33,48,  
  215. 44,49,39,56,34,53,  
  216. 46,42,50,36,29,32};  
  217.   
  218. int ls_countp[16]={  
  219. 1,1,2,2,2,2,2,2,1,2,2,2,2,2,2,1};  
  220.   
  221. void Fsetkeystar(u_char bits[64])  
  222. {  
  223. int i,j;  
  224.   
  225. for (i=0;i<28;i++)  
  226.    C[0][i]=bits[pc_1_cp[i]-1];  
  227. for (i=0;i<28;i++)  
  228.    D[0][i]=bits[pc_1_dp[i]-1];  
  229. for (j=0;j<16;j++)  
  230. {  
  231.    FLS(C[j],C[j+1],ls_countp[j]);  
  232.    FLS(D[j],D[j+1],ls_countp[j]);  
  233.    Fson(C[j+1],D[j+1],K[j+1]);  
  234. }  
  235. }  
  236.   
  237.   
  238. void FLS(u_char *bits,u_char *buffer,int count)  
  239. {  
  240. int i,j;  
  241. for (i=0;i<28;i++)  
  242. {  
  243.    buffer[i]=bits[(i+count)%28];  
  244. }  
  245. }  
  246.   
  247. void Fson(u_char *cc,u_char *dd,u_char *kk)  
  248. {  
  249. int i,j;  
  250. u_char buffer[56];  
  251. for (i=0;i<28;i++)  
  252.    buffer[i]=*cc++;  
  253.   
  254. for (i=28;i<56;i++)  
  255.    buffer[i]=*dd++;  
  256.   
  257. for (i=0;i<48;i++)  
  258.    *kk++=buffer[pc_2p[i]-1];  
  259. }  
  260.   
  261. int iip_tab_p[64]={  
  262. 58,50,42,34,26,18,10,2,  
  263. 60,52,44,36,28,20,12,4,  
  264. 62,54,46,38,30,22,14,6,  
  265. 64,56,48,40,32,24,16,8,  
  266. 57,49,41,33,25,17,9,1,  
  267. 59,51,43,35,27,19,11,3,  
  268. 61,53,45,37,29,21,13,5,  
  269. 63,55,47,39,31,23,15,7};  
  270. int _iip_tab_p[64]={  
  271. 40,8,48,16,56,24,64,32,  
  272. 39,7,47,15,55,23,63,31,  
  273. 38,6,46,14,54,22,62,30,  
  274. 37,5,45,13,53,21,61,29,  
  275. 36,4,44,12,52,20,60,28,  
  276. 35,3,43,11,51,19,59,27,  
  277. 34,2,42,10,50,18,58,26,  
  278. 33,1,41,9,49,17,57,25};  
  279.   
  280. void Fiip(u_char *text,u_char *ll,u_char *rr)  
  281. {  
  282. int i,j;  
  283. u_char buffer[64];  
  284. u_char tmp[64];  
  285. Fexpand0(text,buffer);  
  286.   
  287. for (i=0;i<32;i++)  
  288.    ll[i]=buffer[iip_tab_p[i]-1];  
  289.   
  290. for (i=0;i<32;i++)  
  291.    rr[i]=buffer[iip_tab_p[i+32]-1];  
  292. }  
  293.   
  294. void _Fiip(u_char *text,u_char *ll,u_char *rr)  
  295. {  
  296. int i,j;  
  297. u_char tmp[64];  
  298. for (i=0;i<32;i++)  
  299.    tmp[i]=ll[i];  
  300. for (i=32;i<64;i++)  
  301.    tmp[i]=rr[i-32];  
  302. for (i=0;i<64;i++)  
  303.    text[i]=tmp[_iip_tab_p[i]-1];  
  304. }  
  305.   
  306.   
  307. int e_r_p[48]={  
  308. 32,1,2,3,4,5,4,5,6,7,8,9,  
  309. 8,9,10,11,12,13,12,13,14,15,16,17,  
  310. 16,17,18,19,20,21,20,21,22,23,24,25,  
  311. 24,25,26,27,28,29,28,29,30,31,32,1};  
  312.   
  313. int local_PP[32]={  
  314. 16,7,20,21,29,12,28,17,  
  315. 1,15,23,26,5,18,31,10,  
  316. 2,8,24,14,32,27,3,9,  
  317. 19,13,30,6,22,11,4,25};  
  318. int ccom_SSS_p[8][4][16]={  
  319. 14,4,13,1,2,15,11,8,3,10,6,12,5,9,0,7,  
  320. 0,15,7,4,14,2,13,1,10,6,12,11,9,5,3,8,/* err on */  
  321. 4,1,14,8,13,6,2,11,15,12,9,7,3,10,5,0,  
  322. 15,12,8,2,4,9,1,7,5,11,3,14,10,0,6,13,  
  323.   
  324. 15,1,8,14,6,11,3,4,9,7,2,13,12,0,5,10,  
  325. 3,13,4,7,15,2,8,14,12,0,1,10,6,9,11,5,  
  326. 0,14,7,11,10,4,13,1,5,8,12,6,9,3,2,15,  
  327. 13,8,10,1,3,15,4,2,11,6,7,12,0,5,14,9,  
  328.   
  329. 10,0,9,14,6,3,15,5,1,13,12,7,11,4,2,8,  
  330. 13,7,0,9,3,4,6,10,2,8,5,14,12,11,15,1,  
  331. 13,6,4,9,8,15,3,0,11,1,2,12,5,10,14,7,  
  332. 1,10,13,0,6,9,8,7,4,15,14,3,11,5,2,12,  
  333.   
  334. 7,13,14,3,0,6,9,10,1,2,8,5,11,12,4,15,  
  335. 13,8,11,5,6,15,0,3,4,7,2,12,1,10,14,9,  
  336. 10,6,9,0,12,11,7,13,15,1,3,14,5,2,8,4,  
  337. 3,15,0,6,10,1,13,8,9,4,5,11,12,7,2,14, /* err on */  
  338.   
  339. 2,12,4,1,7,10,11,6,8,5,3,15,13,0,14,9,  
  340. 14,11,2,12,4,7,13,1,5,0,15,10,3,9,8,6, /* err on */  
  341. 4,2,1,11,10,13,7,8,15,9,12,5,6,3,0,14,  
  342. 11,8,12,7,1,14,2,13,6,15,0,9,10,4,5,3,  
  343.   
  344. 12,1,10,15,9,2,6,8,0,13,3,4,14,7,5,11,  
  345. 10,15,4,2,7,12,9,5,6,1,13,14,0,11,3,8,  
  346. 9,14,15,5,2,8,12,3,7,0,4,10,1,13,11,6,  
  347. 4,3,2,12,9,5,15,10,11,14,1,7,6,0,8,13,  
  348.   
  349. 4,11,2,14,15,0,8,13,3,12,9,7,5,10,6,1,  
  350. 13,0,11,7,4,9,1,10,14,3,5,12,2,15,8,6,  
  351. 1,4,11,13,12,3,7,14,10,15,6,8,0,5,9,2,  
  352. 6,11,13,8,1,4,10,7,9,5,0,15,14,2,3,12,  
  353.   
  354. 13,2,8,4,6,15,11,1,10,9,3,14,5,0,12,7,  
  355. 1,15,13,8,10,3,7,4,12,5,6,11,0,14,9,2,  
  356. 7,11,4,1,9,12,14,2,0,6,10,13,15,3,5,8,  
  357. 2,1,14,7,4,10,8,13,15,12,9,0,3,5,6,11};  
  358.   
  359. void FF(int n,u_char *ll,u_char *rr,u_char *LL,u_char *RR)  
  360. {  
  361. int i,j;  
  362. u_char buffer[64],tmp[64];  
  363. for (i=0;i<48;i++)  
  364.    buffer[i]=rr[e_r_p[i]-1];  
  365. for (i=0;i<48;i++)  
  366.    buffer[i]=(buffer[i]+K[n][i])&1;  
  367.   
  368. Fs_box(buffer,tmp);  
  369.   
  370. for (i=0;i<32;i++)  
  371.    buffer[i]=tmp[local_PP[i]-1];  
  372.   
  373. for (i=0;i<32;i++)  
  374.    RR[i]=(buffer[i]+ll[i])&1;  
  375.   
  376. for (i=0;i<32;i++)  
  377.    LL[i]=rr[i];  
  378.   
  379.   
  380. }  
  381.   
  382. void Fs_box(u_char *aa,u_char *bb)  
  383. {  
  384. int i,j,k,m;  
  385. int y,z;  
  386. u_char ss[8];  
  387. m=0;  
  388. for (i=0;i<8;i++)  
  389. {  
  390.    j=6*i;  
  391.    y=aa[j]*2+aa[j+5];  
  392.    z=aa[j+1]*8+aa[j+2]*4+aa[j+3]*2+aa[j+4];  
  393.    ss[i]=ccom_SSS_p[i][y][z];  
  394.    y=0x08;  
  395.    for (k=0;k<4;k++)  
  396.    {  
  397.     bb[m++]=(ss[i]/y)&1;  
  398.     y/=2;  
  399.    }  
  400.   
  401. }  
  402. }  
  403.   
  404.   
  405. int ENCRYPT( u_char *key, _u8 *s,_u8 *d,_u16 len )  
  406. {  
  407. int i;  
  408.   
  409. for(i=0;i<len;i+=8)FDES(key,s+i,d+i);  
  410. // return len;  
  411. return i;  
  412. }  
  413.   
  414. /*解密*/  
  415. int DECRYPT( u_char *key, _u8 *s,_u8 *d, _u16 len )  
  416. {  
  417. int i;  
  418.   
  419. for(i=0;i<len;i+=8)_FDES(key,d+i,s+i);  
  420. // return len;  
  421. return i;  
  422. }  




;