mknewpc2.c
上传用户:lyxiangda
上传日期:2007-01-12
资源大小:3042k
文件大小:7k
源码类别:

CA认证

开发平台:

WINDOWS

  1. /*
  2.  *  mknewpc2.c
  3.  *
  4.  *  Generate PC-2 tables for DES-150 library
  5.  *
  6.  * The contents of this file are subject to the Mozilla Public
  7.  * License Version 1.1 (the "License"); you may not use this file
  8.  * except in compliance with the License. You may obtain a copy of
  9.  * the License at http://www.mozilla.org/MPL/
  10.  *
  11.  * Software distributed under the License is distributed on an "AS
  12.  * IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
  13.  * implied. See the License for the specific language governing
  14.  * rights and limitations under the License.
  15.  *
  16.  * The Original Code is the DES-150 library.
  17.  *
  18.  * The Initial Developer of the Original Code is Nelson B. Bolyard,
  19.  * nelsonb@iname.com.  Portions created by Nelson B. Bolyard are 
  20.  * Copyright (C) 1990, 2000  Nelson B. Bolyard, All Rights Reserved.
  21.  *
  22.  * Contributor(s):
  23.  *
  24.  * Alternatively, the contents of this file may be used under the
  25.  * terms of the GNU General Public License Version 2 or later (the
  26.  * "GPL"), in which case the provisions of the GPL are applicable
  27.  * instead of those above.  If you wish to allow use of your
  28.  * version of this file only under the terms of the GPL and not to
  29.  * allow others to use your version of this file under the MPL,
  30.  * indicate your decision by deleting the provisions above and
  31.  * replace them with the notice and other provisions required by
  32.  * the GPL.  If you do not delete the provisions above, a recipient
  33.  * may use your version of this file under either the MPL or the GPL.
  34.  */
  35. typedef unsigned char BYTE;
  36. typedef unsigned int  HALF;
  37. #define DES_ENCRYPT 0
  38. #define DES_DECRYPT 1
  39. /* two 28-bit registers defined in key schedule production process */
  40. static HALF C0, D0;
  41. static HALF L0, R0;
  42. /* key schedule, 16 internal keys, each with 8 6-bit parts */
  43. static BYTE KS [8] [16];
  44. /*
  45.  * This table takes the 56 bits in C0 and D0 and shows show they are 
  46.  * permuted into the 8 6-bit parts of the key in the key schedule.
  47.  * The bits of C0 are numbered left to right, 1-28.
  48.  * The bits of D0 are numbered left to right, 29-56.
  49.  * Zeros in this table represent bits that are always zero.
  50.  * Note that all the bits in the first  4 rows come from C0, 
  51.  *       and all the bits in the second 4 rows come from D0.
  52.  */
  53. static const BYTE PC2[64] = {
  54.     14, 17, 11, 24,  1,  5,  0,  0, /* S1 */
  55.      3, 28, 15,  6, 21, 10,  0,  0, /* S2 */
  56.     23, 19, 12,  4, 26,  8,  0,  0, /* S3 */
  57.     16,  7, 27, 20, 13,  2,  0,  0, /* S4 */
  58.     41, 52, 31, 37, 47, 55,  0,  0, /* S5 */
  59.     30, 40, 51, 45, 33, 48,  0,  0, /* S6 */
  60.     44, 49, 39, 56, 34, 53,  0,  0, /* S7 */
  61.     46, 42, 50, 36, 29, 32,  0,  0 /* S8 */
  62. };
  63. /* This table represents the same info as PC2, except that 
  64.  * The bits of C0 and D0 are each numbered right to left, 0-27.
  65.  * -1 values indicate bits that are always zero.
  66.  * As before all the bits in the first  4 rows come from C0, 
  67.  *       and all the bits in the second 4 rows come from D0.
  68.  */
  69. static       signed char PC2a[64] = {
  70. /* bits of C0 */
  71.     14, 11, 17,  4, 27, 23, -1, -1, /* S1 */
  72.     25,  0, 13, 22,  7, 18, -1, -1, /* S2 */
  73.      5,  9, 16, 24,  2, 20, -1, -1, /* S3 */
  74.     12, 21,  1,  8, 15, 26, -1, -1, /* S4 */
  75. /* bits of D0 */
  76.     15,  4, 25, 19,  9,  1, -1, -1, /* S5 */
  77.     26, 16,  5, 11, 23,  8, -1, -1, /* S6 */
  78.     12,  7, 17,  0, 22,  3, -1, -1, /* S7 */
  79.     10, 14,  6, 20, 27, 24, -1, -1  /* S8 */
  80. };
  81. /* This table represents the same info as PC2a, except that 
  82.  * The order of of the rows has been changed to increase the efficiency
  83.  * with which the key sechedule is created.
  84.  * Fewer shifts and ANDs are required to make the KS from these.
  85.  */
  86. static const signed char PC2b[64] = {
  87. /* bits of C0 */
  88.     14, 11, 17,  4, 27, 23, -1, -1, /* S1 */
  89.      5,  9, 16, 24,  2, 20, -1, -1, /* S3 */
  90.     25,  0, 13, 22,  7, 18, -1, -1, /* S2 */
  91.     12, 21,  1,  8, 15, 26, -1, -1, /* S4 */
  92. /* bits of D0 */
  93.     26, 16,  5, 11, 23,  8, -1, -1, /* S6 */
  94.     10, 14,  6, 20, 27, 24, -1, -1, /* S8 */
  95.     15,  4, 25, 19,  9,  1, -1, -1, /* S5 */
  96.     12,  7, 17,  0, 22,  3, -1, -1  /* S7 */
  97. };
  98. /* Only 24 of the 28 bits in C0 and D0 are used in PC2.
  99.  * The used bits of C0 and D0 are grouped into 4 groups of 6,
  100.  * so that the PC2 permutation can be accomplished with 4 lookups
  101.  * in tables of 64 entries.
  102.  * The following table shows how the bits of C0 and D0 are grouped
  103.  * into indexes for the respective table lookups.  
  104.  * Bits are numbered right-to-left, 0-27, as in PC2b.
  105.  */
  106. static BYTE NDX[48] = {
  107. /* Bits of C0 */
  108.     27, 26, 25, 24, 23, 22, /* C0 table 0 */
  109.     18, 17, 16, 15, 14, 13, /* C0 table 1 */
  110.      9,  8,  7,  2,  1,  0, /* C0 table 2 */
  111.      5,  4, 21, 20, 12, 11, /* C0 table 3 */
  112. /* bits of D0 */
  113.     27, 26, 25, 24, 23, 22, /* D0 table 0 */
  114.     20, 19, 17, 16, 15, 14, /* D0 table 1 */
  115.     12, 11, 10,  9,  8,  7, /* D0 table 2 */
  116.      6,  5,  4,  3,  1,  0 /* D0 table 3 */
  117. };
  118. /* Here's the code that does that grouping. 
  119. left   = PC2LOOKUP(0, 0, ((c0 >> 22) & 0x3F) );
  120. left  |= PC2LOOKUP(0, 1, ((c0 >> 13) & 0x3F) );
  121. left  |= PC2LOOKUP(0, 2, ((c0 >>  4) & 0x38) | (c0 & 0x7) );
  122. left  |= PC2LOOKUP(0, 3, ((c0>>18)&0xC) | ((c0>>11)&0x3) | (c0&0x30));
  123. right  = PC2LOOKUP(1, 0, ((d0 >> 22) & 0x3F) );
  124. right |= PC2LOOKUP(1, 1, ((d0 >> 15) & 0x30) | ((d0 >> 14) & 0xf) );
  125. right |= PC2LOOKUP(1, 2, ((d0 >>  7) & 0x3F) );
  126. right |= PC2LOOKUP(1, 3, ((d0 >>  1) & 0x3C) | (d0 & 0x3));
  127. */
  128. void
  129. make_pc2a( void )
  130. {
  131.     int i, j;
  132.     for ( i = 0; i < 64; ++i ) {
  133. j = PC2[i];
  134. if (j == 0)
  135.     j = -1;
  136. else if ( j < 29 )
  137.     j = 28 - j ;
  138. else
  139.     j = 56 - j;
  140. PC2a[i] = j;
  141.     }
  142.     for ( i = 0; i < 64; i += 8 ) {
  143. printf("%3d,%3d,%3d,%3d,%3d,%3d,%3d,%3d,n",
  144. PC2a[i+0],PC2a[i+1],PC2a[i+2],PC2a[i+3],
  145. PC2a[i+4],PC2a[i+5],PC2a[i+6],PC2a[i+7] );
  146.     }
  147. }
  148. HALF PC2cd0[64];
  149. HALF PC_2H[8][64];
  150. void
  151. mktable( )
  152. {
  153.     int i;
  154.     int table;
  155.     const BYTE * ndx   = NDX;
  156.     HALF         mask;
  157.     mask  = 0x80000000;
  158.     for (i = 0; i < 32; ++i, mask >>= 1) {
  159. int bit = PC2b[i];
  160. if (bit < 0)
  161.     continue;
  162. PC2cd0[bit + 32] = mask;
  163.     }
  164.     mask  = 0x80000000;
  165.     for (i = 32; i < 64; ++i, mask >>= 1) {
  166. int bit = PC2b[i];
  167. if (bit < 0)
  168.     continue;
  169. PC2cd0[bit] = mask;
  170.     }
  171. #if DEBUG
  172.     for (i = 0; i < 64; ++i) {
  173.      printf("0x%08x,n", PC2cd0[i]);
  174.     }
  175. #endif
  176.     for (i = 0; i < 24; ++i) {
  177.      NDX[i] += 32; /* because c0 is the upper half */
  178.     }
  179.     for (table = 0; table < 8; ++table) {
  180. HALF bitvals[6];
  181.      for (i = 0; i < 6; ++i) {
  182.     bitvals[5-i] = PC2cd0[*ndx++];
  183. }
  184. for (i = 0; i < 64; ++i) {
  185.     int  j;
  186.     int  k     = 0;
  187.     HALF value = 0;
  188.     for (j = i; j; j >>= 1, ++k) {
  189.      if (j & 1) {
  190.     value |= bitvals[k];
  191. }
  192.     }
  193.     PC_2H[table][i] = value;
  194. }
  195. printf("/* table %d */ {n", table );
  196. for (i = 0; i < 64; i += 4) {
  197.     printf("    0x%08x, 0x%08x, 0x%08x, 0x%08x, n",
  198.     PC_2H[table][i],   PC_2H[table][i+1],
  199.     PC_2H[table][i+2], PC_2H[table][i+3]);
  200. }
  201. printf("  },n");
  202.     }
  203. }
  204. int
  205. main(void)
  206. {
  207. /*   make_pc2a(); */
  208.    mktable();
  209.    return 0;
  210. }