crypt-bsd-4.3-reno.c
上传用户:zhh515
上传日期:2007-01-06
资源大小:966k
文件大小:8k
源码类别:

加密解密

开发平台:

C/C++

  1. #if defined(LIBC_SCCS) && !defined(lint)
  2. static char sccsid[] = "@(#)crypt.c 5.3 (Berkeley) 5/11/90";
  3. #endif LIBC_SCCS and not lint
  4. /*
  5.  * This program implements the
  6.  * Proposed Federal Information Processing
  7.  *  Data Encryption Standard.
  8.  * See Federal Register, March 17, 1975 (40FR12134)
  9.  */
  10. /*
  11.  * Initial permutation,
  12.  */
  13. static char IP[] = {
  14. 58,50,42,34,26,18,10, 2,
  15. 60,52,44,36,28,20,12, 4,
  16. 62,54,46,38,30,22,14, 6,
  17. 64,56,48,40,32,24,16, 8,
  18. 57,49,41,33,25,17, 9, 1,
  19. 59,51,43,35,27,19,11, 3,
  20. 61,53,45,37,29,21,13, 5,
  21. 63,55,47,39,31,23,15, 7,
  22. };
  23. /*
  24.  * Final permutation, FP = IP^(-1)
  25.  */
  26. static char FP[] = {
  27. 40, 8,48,16,56,24,64,32,
  28. 39, 7,47,15,55,23,63,31,
  29. 38, 6,46,14,54,22,62,30,
  30. 37, 5,45,13,53,21,61,29,
  31. 36, 4,44,12,52,20,60,28,
  32. 35, 3,43,11,51,19,59,27,
  33. 34, 2,42,10,50,18,58,26,
  34. 33, 1,41, 9,49,17,57,25,
  35. };
  36. /*
  37.  * Permuted-choice 1 from the key bits
  38.  * to yield C and D.
  39.  * Note that bits 8,16... are left out:
  40.  * They are intended for a parity check.
  41.  */
  42. static char PC1_C[] = {
  43. 57,49,41,33,25,17, 9,
  44.  1,58,50,42,34,26,18,
  45. 10, 2,59,51,43,35,27,
  46. 19,11, 3,60,52,44,36,
  47. };
  48. static char PC1_D[] = {
  49. 63,55,47,39,31,23,15,
  50.  7,62,54,46,38,30,22,
  51. 14, 6,61,53,45,37,29,
  52. 21,13, 5,28,20,12, 4,
  53. };
  54. /*
  55.  * Sequence of shifts used for the key schedule.
  56. */
  57. static char shifts[] = {
  58. 1,1,2,2,2,2,2,2,1,2,2,2,2,2,2,1,
  59. };
  60. /*
  61.  * Permuted-choice 2, to pick out the bits from
  62.  * the CD array that generate the key schedule.
  63.  */
  64. static char PC2_C[] = {
  65. 14,17,11,24, 1, 5,
  66.  3,28,15, 6,21,10,
  67. 23,19,12, 4,26, 8,
  68. 16, 7,27,20,13, 2,
  69. };
  70. static char PC2_D[] = {
  71. 41,52,31,37,47,55,
  72. 30,40,51,45,33,48,
  73. 44,49,39,56,34,53,
  74. 46,42,50,36,29,32,
  75. };
  76. /*
  77.  * The C and D arrays used to calculate the key schedule.
  78.  */
  79. static char C[28];
  80. static char D[28];
  81. /*
  82.  * The key schedule.
  83.  * Generated from the key.
  84.  */
  85. static char KS[16][48];
  86. /*
  87.  * The E bit-selection table.
  88.  */
  89. static char E[48];
  90. static char e[] = {
  91. 32, 1, 2, 3, 4, 5,
  92.  4, 5, 6, 7, 8, 9,
  93.  8, 9,10,11,12,13,
  94. 12,13,14,15,16,17,
  95. 16,17,18,19,20,21,
  96. 20,21,22,23,24,25,
  97. 24,25,26,27,28,29,
  98. 28,29,30,31,32, 1,
  99. };
  100. /*
  101.  * Set up the key schedule from the key.
  102.  */
  103. setkey(key)
  104. char *key;
  105. {
  106. register i, j, k;
  107. int t;
  108. /*
  109.  * First, generate C and D by permuting
  110.  * the key.  The low order bit of each
  111.  * 8-bit char is not used, so C and D are only 28
  112.  * bits apiece.
  113.  */
  114. for (i=0; i<28; i++) {
  115. C[i] = key[PC1_C[i]-1];
  116. D[i] = key[PC1_D[i]-1];
  117. }
  118. /*
  119.  * To generate Ki, rotate C and D according
  120.  * to schedule and pick up a permutation
  121.  * using PC2.
  122.  */
  123. for (i=0; i<16; i++) {
  124. /*
  125.  * rotate.
  126.  */
  127. for (k=0; k<shifts[i]; k++) {
  128. t = C[0];
  129. for (j=0; j<28-1; j++)
  130. C[j] = C[j+1];
  131. C[27] = t;
  132. t = D[0];
  133. for (j=0; j<28-1; j++)
  134. D[j] = D[j+1];
  135. D[27] = t;
  136. }
  137. /*
  138.  * get Ki. Note C and D are concatenated.
  139.  */
  140. for (j=0; j<24; j++) {
  141. KS[i][j] = C[PC2_C[j]-1];
  142. KS[i][j+24] = D[PC2_D[j]-28-1];
  143. }
  144. }
  145. for(i=0;i<48;i++)
  146. E[i] = e[i];
  147. }
  148. /*
  149.  * The 8 selection functions.
  150.  * For some reason, they give a 0-origin
  151.  * index, unlike everything else.
  152.  */
  153. static char S[8][64] = {
  154. 14, 4,13, 1, 2,15,11, 8, 3,10, 6,12, 5, 9, 0, 7,
  155.  0,15, 7, 4,14, 2,13, 1,10, 6,12,11, 9, 5, 3, 8,
  156.  4, 1,14, 8,13, 6, 2,11,15,12, 9, 7, 3,10, 5, 0,
  157. 15,12, 8, 2, 4, 9, 1, 7, 5,11, 3,14,10, 0, 6,13,
  158. 15, 1, 8,14, 6,11, 3, 4, 9, 7, 2,13,12, 0, 5,10,
  159.  3,13, 4, 7,15, 2, 8,14,12, 0, 1,10, 6, 9,11, 5,
  160.  0,14, 7,11,10, 4,13, 1, 5, 8,12, 6, 9, 3, 2,15,
  161. 13, 8,10, 1, 3,15, 4, 2,11, 6, 7,12, 0, 5,14, 9,
  162. 10, 0, 9,14, 6, 3,15, 5, 1,13,12, 7,11, 4, 2, 8,
  163. 13, 7, 0, 9, 3, 4, 6,10, 2, 8, 5,14,12,11,15, 1,
  164. 13, 6, 4, 9, 8,15, 3, 0,11, 1, 2,12, 5,10,14, 7,
  165.  1,10,13, 0, 6, 9, 8, 7, 4,15,14, 3,11, 5, 2,12,
  166.  7,13,14, 3, 0, 6, 9,10, 1, 2, 8, 5,11,12, 4,15,
  167. 13, 8,11, 5, 6,15, 0, 3, 4, 7, 2,12, 1,10,14, 9,
  168. 10, 6, 9, 0,12,11, 7,13,15, 1, 3,14, 5, 2, 8, 4,
  169.  3,15, 0, 6,10, 1,13, 8, 9, 4, 5,11,12, 7, 2,14,
  170.  2,12, 4, 1, 7,10,11, 6, 8, 5, 3,15,13, 0,14, 9,
  171. 14,11, 2,12, 4, 7,13, 1, 5, 0,15,10, 3, 9, 8, 6,
  172.  4, 2, 1,11,10,13, 7, 8,15, 9,12, 5, 6, 3, 0,14,
  173. 11, 8,12, 7, 1,14, 2,13, 6,15, 0, 9,10, 4, 5, 3,
  174. 12, 1,10,15, 9, 2, 6, 8, 0,13, 3, 4,14, 7, 5,11,
  175. 10,15, 4, 2, 7,12, 9, 5, 6, 1,13,14, 0,11, 3, 8,
  176.  9,14,15, 5, 2, 8,12, 3, 7, 0, 4,10, 1,13,11, 6,
  177.  4, 3, 2,12, 9, 5,15,10,11,14, 1, 7, 6, 0, 8,13,
  178.  4,11, 2,14,15, 0, 8,13, 3,12, 9, 7, 5,10, 6, 1,
  179. 13, 0,11, 7, 4, 9, 1,10,14, 3, 5,12, 2,15, 8, 6,
  180.  1, 4,11,13,12, 3, 7,14,10,15, 6, 8, 0, 5, 9, 2,
  181.  6,11,13, 8, 1, 4,10, 7, 9, 5, 0,15,14, 2, 3,12,
  182. 13, 2, 8, 4, 6,15,11, 1,10, 9, 3,14, 5, 0,12, 7,
  183.  1,15,13, 8,10, 3, 7, 4,12, 5, 6,11, 0,14, 9, 2,
  184.  7,11, 4, 1, 9,12,14, 2, 0, 6,10,13,15, 3, 5, 8,
  185.  2, 1,14, 7, 4,10, 8,13,15,12, 9, 0, 3, 5, 6,11,
  186. };
  187. /*
  188.  * P is a permutation on the selected combination
  189.  * of the current L and key.
  190.  */
  191. static char P[] = {
  192. 16, 7,20,21,
  193. 29,12,28,17,
  194.  1,15,23,26,
  195.  5,18,31,10,
  196.  2, 8,24,14,
  197. 32,27, 3, 9,
  198. 19,13,30, 6,
  199. 22,11, 4,25,
  200. };
  201. /*
  202.  * The current block, divided into 2 halves.
  203.  */
  204. static char L[64], *R = L+32;
  205. static char tempL[32];
  206. static char f[32];
  207. /*
  208.  * The combination of the key and the input, before selection.
  209.  */
  210. static char preS[48];
  211. /*
  212.  * The payoff: encrypt a block.
  213.  */
  214. encrypt(block, edflag)
  215. char *block;
  216. {
  217. int i, ii;
  218. register t, j, k;
  219. /*
  220.  * First, permute the bits in the input
  221.  */
  222. for (j=0; j<64; j++)
  223. L[j] = block[IP[j]-1];
  224. /*
  225.  * Perform an encryption operation 16 times.
  226.  */
  227. for (ii=0; ii<16; ii++) {
  228. /*
  229.  * Set direction
  230.  */
  231. if (edflag)
  232. i = 15-ii;
  233. else
  234. i = ii;
  235. /*
  236.  * Save the R array,
  237.  * which will be the new L.
  238.  */
  239. for (j=0; j<32; j++)
  240. tempL[j] = R[j];
  241. /*
  242.  * Expand R to 48 bits using the E selector;
  243.  * exclusive-or with the current key bits.
  244.  */
  245. for (j=0; j<48; j++)
  246. preS[j] = R[E[j]-1] ^ KS[i][j];
  247. /*
  248.  * The pre-select bits are now considered
  249.  * in 8 groups of 6 bits each.
  250.  * The 8 selection functions map these
  251.  * 6-bit quantities into 4-bit quantities
  252.  * and the results permuted
  253.  * to make an f(R, K).
  254.  * The indexing into the selection functions
  255.  * is peculiar; it could be simplified by
  256.  * rewriting the tables.
  257.  */
  258. for (j=0; j<8; j++) {
  259. t = 6*j;
  260. k = S[j][(preS[t+0]<<5)+
  261. (preS[t+1]<<3)+
  262. (preS[t+2]<<2)+
  263. (preS[t+3]<<1)+
  264. (preS[t+4]<<0)+
  265. (preS[t+5]<<4)];
  266. t = 4*j;
  267. f[t+0] = (k>>3)&01;
  268. f[t+1] = (k>>2)&01;
  269. f[t+2] = (k>>1)&01;
  270. f[t+3] = (k>>0)&01;
  271. }
  272. /*
  273.  * The new R is L ^ f(R, K).
  274.  * The f here has to be permuted first, though.
  275.  */
  276. for (j=0; j<32; j++)
  277. R[j] = L[j] ^ f[P[j]-1];
  278. /*
  279.  * Finally, the new L (the original R)
  280.  * is copied back.
  281.  */
  282. for (j=0; j<32; j++)
  283. L[j] = tempL[j];
  284. }
  285. /*
  286.  * The output L and R are reversed.
  287.  */
  288. for (j=0; j<32; j++) {
  289. t = L[j];
  290. L[j] = R[j];
  291. R[j] = t;
  292. }
  293. /*
  294.  * The final output
  295.  * gets the inverse permutation of the very original.
  296.  */
  297. for (j=0; j<64; j++)
  298. block[j] = L[FP[j]-1];
  299. }
  300. char *
  301. crypt(pw,salt)
  302. char *pw;
  303. char *salt;
  304. {
  305. register i, j, c;
  306. int temp;
  307. static char block[66], iobuf[16];
  308. for(i=0; i<66; i++)
  309. block[i] = 0;
  310. for(i=0; (c= *pw) && i<64; pw++){
  311. for(j=0; j<7; j++, i++)
  312. block[i] = (c>>(6-j)) & 01;
  313. i++;
  314. }
  315. setkey(block);
  316. for(i=0; i<66; i++)
  317. block[i] = 0;
  318. for(i=0;i<2;i++){
  319. c = *salt++;
  320. iobuf[i] = c;
  321. if(c>'Z') c -= 6;
  322. if(c>'9') c -= 7;
  323. c -= '.';
  324. for(j=0;j<6;j++){
  325. if((c>>j) & 01){
  326. temp = E[6*i+j];
  327. E[6*i+j] = E[6*i+j+24];
  328. E[6*i+j+24] = temp;
  329. }
  330. }
  331. }
  332. for(i=0; i<25; i++)
  333. encrypt(block,0);
  334. for(i=0; i<11; i++){
  335. c = 0;
  336. for(j=0; j<6; j++){
  337. c <<= 1;
  338. c |= block[6*i+j];
  339. }
  340. c += '.';
  341. if(c>'9') c += 7;
  342. if(c>'Z') c += 6;
  343. iobuf[i+2] = c;
  344. }
  345. iobuf[i+2] = 0;
  346. if(iobuf[1]==0)
  347. iobuf[1] = iobuf[0];
  348. return(iobuf);
  349. }