d3des.c
上传用户:qd_success
上传日期:2013-04-09
资源大小:8k
文件大小:20k
源码类别:

加密解密

开发平台:

C++ Builder

  1. /* D3DES (V5.09) -
  2.  *
  3.  * A portable, public domain, version of the Data Encryption Standard.
  4.  *
  5.  * Written with Symantec's THINK (Lightspeed) C by Richard Outerbridge.
  6.  * Thanks to: Dan Hoey for his excellent Initial and Inverse permutation
  7.  * code;  Jim Gillogly & Phil Karn for the DES key schedule code; Dennis
  8.  * Ferguson, Eric Young and Dana How for comparing notes; and Ray Lau,
  9.  * for humouring me on.
  10.  *
  11.  * Copyright (c) 1988,1989,1990,1991,1992 by Richard Outerbridge.
  12.  * (GEnie : OUTER; CIS : [71755,204]) Graven Imagery, 1992.
  13.  */
  14. #include "d3des.h"
  15. static void scrunch(unsigned char *, unsigned long *);
  16. static void unscrun(unsigned long *, unsigned char *);
  17. static void desfunc(unsigned long *, unsigned long *);
  18. static void cookey(unsigned long *);
  19. static unsigned long KnL[32] = { 0L };
  20. static unsigned long KnR[32] = { 0L };
  21. static unsigned long Kn3[32] = { 0L };
  22. static unsigned char Df_Key[24] = {
  23. 0x01,0x23,0x45,0x67,0x89,0xab,0xcd,0xef,
  24. 0xfe,0xdc,0xba,0x98,0x76,0x54,0x32,0x10,
  25. 0x89,0xab,0xcd,0xef,0x01,0x23,0x45,0x67 };
  26. static unsigned short bytebit[8] = {
  27. 0200, 0100, 040, 020, 010, 04, 02, 01 };
  28. static unsigned long bigbyte[24] = {
  29. 0x800000L, 0x400000L, 0x200000L, 0x100000L,
  30. 0x80000L, 0x40000L, 0x20000L, 0x10000L,
  31. 0x8000L, 0x4000L, 0x2000L, 0x1000L,
  32. 0x800L,  0x400L,  0x200L,  0x100L,
  33. 0x80L, 0x40L, 0x20L, 0x10L,
  34. 0x8L, 0x4L, 0x2L, 0x1L };
  35. /* Use the key schedule specified in the Standard (ANSI X3.92-1981). */
  36. static unsigned char pc1[56] = {
  37. 56, 48, 40, 32, 24, 16,  8,  0, 57, 49, 41, 33, 25, 17,
  38.  9,  1, 58, 50, 42, 34, 26, 18, 10,  2, 59, 51, 43, 35,
  39. 62, 54, 46, 38, 30, 22, 14,  6, 61, 53, 45, 37, 29, 21,
  40. 13,  5, 60, 52, 44, 36, 28, 20, 12,  4, 27, 19, 11,  3 };
  41. static unsigned char totrot[16] = {
  42. 1,2,4,6,8,10,12,14,15,17,19,21,23,25,27,28 };
  43. static unsigned char pc2[48] = {
  44. 13, 16, 10, 23,  0,  4,  2, 27, 14,  5, 20,  9,
  45. 22, 18, 11,  3, 25,  7, 15,  6, 26, 19, 12,  1,
  46. 40, 51, 30, 36, 46, 54, 29, 39, 50, 44, 32, 47,
  47. 43, 48, 38, 55, 33, 52, 45, 41, 49, 35, 28, 31 };
  48. void deskey(key, edf) /* Thanks to James Gillogly & Phil Karn! */
  49. unsigned char *key;
  50. short edf;
  51. {
  52. register int i, j, l, m, n;
  53. unsigned char pc1m[56], pcr[56];
  54. unsigned long kn[32];
  55. for ( j = 0; j < 56; j++ ) {
  56. l = pc1[j];
  57. m = l & 07;
  58. pc1m[j] = (key[l >> 3] & bytebit[m]) ? 1 : 0;
  59. }
  60. for( i = 0; i < 16; i++ ) {
  61. if( edf == DE1 ) m = (15 - i) << 1;
  62. else m = i << 1;
  63. n = m + 1;
  64. kn[m] = kn[n] = 0L;
  65. for( j = 0; j < 28; j++ ) {
  66. l = j + totrot[i];
  67. if( l < 28 ) pcr[j] = pc1m[l];
  68. else pcr[j] = pc1m[l - 28];
  69. }
  70. for( j = 28; j < 56; j++ ) {
  71.     l = j + totrot[i];
  72.     if( l < 56 ) pcr[j] = pc1m[l];
  73.     else pcr[j] = pc1m[l - 28];
  74.     }
  75. for( j = 0; j < 24; j++ ) {
  76. if( pcr[pc2[j]] ) kn[m] |= bigbyte[j];
  77. if( pcr[pc2[j+24]] ) kn[n] |= bigbyte[j];
  78. }
  79. }
  80. cookey(kn);
  81. return;
  82. }
  83. static void cookey(raw1)
  84. register unsigned long *raw1;
  85. {
  86. register unsigned long *cook, *raw0;
  87. unsigned long dough[32];
  88. register int i;
  89. cook = dough;
  90. for( i = 0; i < 16; i++, raw1++ ) {
  91. raw0 = raw1++;
  92. *cook  = (*raw0 & 0x00fc0000L) << 6;
  93. *cook |= (*raw0 & 0x00000fc0L) << 10;
  94. *cook |= (*raw1 & 0x00fc0000L) >> 10;
  95. *cook++ |= (*raw1 & 0x00000fc0L) >> 6;
  96. *cook  = (*raw0 & 0x0003f000L) << 12;
  97. *cook |= (*raw0 & 0x0000003fL) << 16;
  98. *cook |= (*raw1 & 0x0003f000L) >> 4;
  99. *cook++ |= (*raw1 & 0x0000003fL);
  100. }
  101. usekey(dough);
  102. return;
  103. }
  104. void cpkey(into)
  105. register unsigned long *into;
  106. {
  107. register unsigned long *from, *endp;
  108. from = KnL, endp = &KnL[32];
  109. while( from < endp ) *into++ = *from++;
  110. return;
  111. }
  112. void usekey(from)
  113. register unsigned long *from;
  114. {
  115. register unsigned long *to, *endp;
  116. to = KnL, endp = &KnL[32];
  117. while( to < endp ) *to++ = *from++;
  118. return;
  119. }
  120. void des(inblock, outblock)
  121. unsigned char *inblock, *outblock;
  122. {
  123. unsigned long work[2];
  124. scrunch(inblock, work);
  125. desfunc(work, KnL);
  126. unscrun(work, outblock);
  127. return;
  128. }
  129. static void scrunch(outof, into)
  130. register unsigned char *outof;
  131. register unsigned long *into;
  132. {
  133. *into  = (*outof++ & 0xffL) << 24;
  134. *into |= (*outof++ & 0xffL) << 16;
  135. *into |= (*outof++ & 0xffL) << 8;
  136. *into++ |= (*outof++ & 0xffL);
  137. *into  = (*outof++ & 0xffL) << 24;
  138. *into |= (*outof++ & 0xffL) << 16;
  139. *into |= (*outof++ & 0xffL) << 8;
  140. *into |= (*outof   & 0xffL);
  141. return;
  142. }
  143. static void unscrun(outof, into)
  144. register unsigned long *outof;
  145. register unsigned char *into;
  146. {
  147. *into++ = (*outof >> 24) & 0xffL;
  148. *into++ = (*outof >> 16) & 0xffL;
  149. *into++ = (*outof >>  8) & 0xffL;
  150. *into++ =  *outof++  & 0xffL;
  151. *into++ = (*outof >> 24) & 0xffL;
  152. *into++ = (*outof >> 16) & 0xffL;
  153. *into++ = (*outof >>  8) & 0xffL;
  154. *into =  *outof  & 0xffL;
  155. return;
  156. }
  157. static unsigned long SP1[64] = {
  158. 0x01010400L, 0x00000000L, 0x00010000L, 0x01010404L,
  159. 0x01010004L, 0x00010404L, 0x00000004L, 0x00010000L,
  160. 0x00000400L, 0x01010400L, 0x01010404L, 0x00000400L,
  161. 0x01000404L, 0x01010004L, 0x01000000L, 0x00000004L,
  162. 0x00000404L, 0x01000400L, 0x01000400L, 0x00010400L,
  163. 0x00010400L, 0x01010000L, 0x01010000L, 0x01000404L,
  164. 0x00010004L, 0x01000004L, 0x01000004L, 0x00010004L,
  165. 0x00000000L, 0x00000404L, 0x00010404L, 0x01000000L,
  166. 0x00010000L, 0x01010404L, 0x00000004L, 0x01010000L,
  167. 0x01010400L, 0x01000000L, 0x01000000L, 0x00000400L,
  168. 0x01010004L, 0x00010000L, 0x00010400L, 0x01000004L,
  169. 0x00000400L, 0x00000004L, 0x01000404L, 0x00010404L,
  170. 0x01010404L, 0x00010004L, 0x01010000L, 0x01000404L,
  171. 0x01000004L, 0x00000404L, 0x00010404L, 0x01010400L,
  172. 0x00000404L, 0x01000400L, 0x01000400L, 0x00000000L,
  173. 0x00010004L, 0x00010400L, 0x00000000L, 0x01010004L };
  174. static unsigned long SP2[64] = {
  175. 0x80108020L, 0x80008000L, 0x00008000L, 0x00108020L,
  176. 0x00100000L, 0x00000020L, 0x80100020L, 0x80008020L,
  177. 0x80000020L, 0x80108020L, 0x80108000L, 0x80000000L,
  178. 0x80008000L, 0x00100000L, 0x00000020L, 0x80100020L,
  179. 0x00108000L, 0x00100020L, 0x80008020L, 0x00000000L,
  180. 0x80000000L, 0x00008000L, 0x00108020L, 0x80100000L,
  181. 0x00100020L, 0x80000020L, 0x00000000L, 0x00108000L,
  182. 0x00008020L, 0x80108000L, 0x80100000L, 0x00008020L,
  183. 0x00000000L, 0x00108020L, 0x80100020L, 0x00100000L,
  184. 0x80008020L, 0x80100000L, 0x80108000L, 0x00008000L,
  185. 0x80100000L, 0x80008000L, 0x00000020L, 0x80108020L,
  186. 0x00108020L, 0x00000020L, 0x00008000L, 0x80000000L,
  187. 0x00008020L, 0x80108000L, 0x00100000L, 0x80000020L,
  188. 0x00100020L, 0x80008020L, 0x80000020L, 0x00100020L,
  189. 0x00108000L, 0x00000000L, 0x80008000L, 0x00008020L,
  190. 0x80000000L, 0x80100020L, 0x80108020L, 0x00108000L };
  191. static unsigned long SP3[64] = {
  192. 0x00000208L, 0x08020200L, 0x00000000L, 0x08020008L,
  193. 0x08000200L, 0x00000000L, 0x00020208L, 0x08000200L,
  194. 0x00020008L, 0x08000008L, 0x08000008L, 0x00020000L,
  195. 0x08020208L, 0x00020008L, 0x08020000L, 0x00000208L,
  196. 0x08000000L, 0x00000008L, 0x08020200L, 0x00000200L,
  197. 0x00020200L, 0x08020000L, 0x08020008L, 0x00020208L,
  198. 0x08000208L, 0x00020200L, 0x00020000L, 0x08000208L,
  199. 0x00000008L, 0x08020208L, 0x00000200L, 0x08000000L,
  200. 0x08020200L, 0x08000000L, 0x00020008L, 0x00000208L,
  201. 0x00020000L, 0x08020200L, 0x08000200L, 0x00000000L,
  202. 0x00000200L, 0x00020008L, 0x08020208L, 0x08000200L,
  203. 0x08000008L, 0x00000200L, 0x00000000L, 0x08020008L,
  204. 0x08000208L, 0x00020000L, 0x08000000L, 0x08020208L,
  205. 0x00000008L, 0x00020208L, 0x00020200L, 0x08000008L,
  206. 0x08020000L, 0x08000208L, 0x00000208L, 0x08020000L,
  207. 0x00020208L, 0x00000008L, 0x08020008L, 0x00020200L };
  208. static unsigned long SP4[64] = {
  209. 0x00802001L, 0x00002081L, 0x00002081L, 0x00000080L,
  210. 0x00802080L, 0x00800081L, 0x00800001L, 0x00002001L,
  211. 0x00000000L, 0x00802000L, 0x00802000L, 0x00802081L,
  212. 0x00000081L, 0x00000000L, 0x00800080L, 0x00800001L,
  213. 0x00000001L, 0x00002000L, 0x00800000L, 0x00802001L,
  214. 0x00000080L, 0x00800000L, 0x00002001L, 0x00002080L,
  215. 0x00800081L, 0x00000001L, 0x00002080L, 0x00800080L,
  216. 0x00002000L, 0x00802080L, 0x00802081L, 0x00000081L,
  217. 0x00800080L, 0x00800001L, 0x00802000L, 0x00802081L,
  218. 0x00000081L, 0x00000000L, 0x00000000L, 0x00802000L,
  219. 0x00002080L, 0x00800080L, 0x00800081L, 0x00000001L,
  220. 0x00802001L, 0x00002081L, 0x00002081L, 0x00000080L,
  221. 0x00802081L, 0x00000081L, 0x00000001L, 0x00002000L,
  222. 0x00800001L, 0x00002001L, 0x00802080L, 0x00800081L,
  223. 0x00002001L, 0x00002080L, 0x00800000L, 0x00802001L,
  224. 0x00000080L, 0x00800000L, 0x00002000L, 0x00802080L };
  225. static unsigned long SP5[64] = {
  226. 0x00000100L, 0x02080100L, 0x02080000L, 0x42000100L,
  227. 0x00080000L, 0x00000100L, 0x40000000L, 0x02080000L,
  228. 0x40080100L, 0x00080000L, 0x02000100L, 0x40080100L,
  229. 0x42000100L, 0x42080000L, 0x00080100L, 0x40000000L,
  230. 0x02000000L, 0x40080000L, 0x40080000L, 0x00000000L,
  231. 0x40000100L, 0x42080100L, 0x42080100L, 0x02000100L,
  232. 0x42080000L, 0x40000100L, 0x00000000L, 0x42000000L,
  233. 0x02080100L, 0x02000000L, 0x42000000L, 0x00080100L,
  234. 0x00080000L, 0x42000100L, 0x00000100L, 0x02000000L,
  235. 0x40000000L, 0x02080000L, 0x42000100L, 0x40080100L,
  236. 0x02000100L, 0x40000000L, 0x42080000L, 0x02080100L,
  237. 0x40080100L, 0x00000100L, 0x02000000L, 0x42080000L,
  238. 0x42080100L, 0x00080100L, 0x42000000L, 0x42080100L,
  239. 0x02080000L, 0x00000000L, 0x40080000L, 0x42000000L,
  240. 0x00080100L, 0x02000100L, 0x40000100L, 0x00080000L,
  241. 0x00000000L, 0x40080000L, 0x02080100L, 0x40000100L };
  242. static unsigned long SP6[64] = {
  243. 0x20000010L, 0x20400000L, 0x00004000L, 0x20404010L,
  244. 0x20400000L, 0x00000010L, 0x20404010L, 0x00400000L,
  245. 0x20004000L, 0x00404010L, 0x00400000L, 0x20000010L,
  246. 0x00400010L, 0x20004000L, 0x20000000L, 0x00004010L,
  247. 0x00000000L, 0x00400010L, 0x20004010L, 0x00004000L,
  248. 0x00404000L, 0x20004010L, 0x00000010L, 0x20400010L,
  249. 0x20400010L, 0x00000000L, 0x00404010L, 0x20404000L,
  250. 0x00004010L, 0x00404000L, 0x20404000L, 0x20000000L,
  251. 0x20004000L, 0x00000010L, 0x20400010L, 0x00404000L,
  252. 0x20404010L, 0x00400000L, 0x00004010L, 0x20000010L,
  253. 0x00400000L, 0x20004000L, 0x20000000L, 0x00004010L,
  254. 0x20000010L, 0x20404010L, 0x00404000L, 0x20400000L,
  255. 0x00404010L, 0x20404000L, 0x00000000L, 0x20400010L,
  256. 0x00000010L, 0x00004000L, 0x20400000L, 0x00404010L,
  257. 0x00004000L, 0x00400010L, 0x20004010L, 0x00000000L,
  258. 0x20404000L, 0x20000000L, 0x00400010L, 0x20004010L };
  259. static unsigned long SP7[64] = {
  260. 0x00200000L, 0x04200002L, 0x04000802L, 0x00000000L,
  261. 0x00000800L, 0x04000802L, 0x00200802L, 0x04200800L,
  262. 0x04200802L, 0x00200000L, 0x00000000L, 0x04000002L,
  263. 0x00000002L, 0x04000000L, 0x04200002L, 0x00000802L,
  264. 0x04000800L, 0x00200802L, 0x00200002L, 0x04000800L,
  265. 0x04000002L, 0x04200000L, 0x04200800L, 0x00200002L,
  266. 0x04200000L, 0x00000800L, 0x00000802L, 0x04200802L,
  267. 0x00200800L, 0x00000002L, 0x04000000L, 0x00200800L,
  268. 0x04000000L, 0x00200800L, 0x00200000L, 0x04000802L,
  269. 0x04000802L, 0x04200002L, 0x04200002L, 0x00000002L,
  270. 0x00200002L, 0x04000000L, 0x04000800L, 0x00200000L,
  271. 0x04200800L, 0x00000802L, 0x00200802L, 0x04200800L,
  272. 0x00000802L, 0x04000002L, 0x04200802L, 0x04200000L,
  273. 0x00200800L, 0x00000000L, 0x00000002L, 0x04200802L,
  274. 0x00000000L, 0x00200802L, 0x04200000L, 0x00000800L,
  275. 0x04000002L, 0x04000800L, 0x00000800L, 0x00200002L };
  276. static unsigned long SP8[64] = {
  277. 0x10001040L, 0x00001000L, 0x00040000L, 0x10041040L,
  278. 0x10000000L, 0x10001040L, 0x00000040L, 0x10000000L,
  279. 0x00040040L, 0x10040000L, 0x10041040L, 0x00041000L,
  280. 0x10041000L, 0x00041040L, 0x00001000L, 0x00000040L,
  281. 0x10040000L, 0x10000040L, 0x10001000L, 0x00001040L,
  282. 0x00041000L, 0x00040040L, 0x10040040L, 0x10041000L,
  283. 0x00001040L, 0x00000000L, 0x00000000L, 0x10040040L,
  284. 0x10000040L, 0x10001000L, 0x00041040L, 0x00040000L,
  285. 0x00041040L, 0x00040000L, 0x10041000L, 0x00001000L,
  286. 0x00000040L, 0x10040040L, 0x00001000L, 0x00041040L,
  287. 0x10001000L, 0x00000040L, 0x10000040L, 0x10040000L,
  288. 0x10040040L, 0x10000000L, 0x00040000L, 0x10001040L,
  289. 0x00000000L, 0x10041040L, 0x00040040L, 0x10000040L,
  290. 0x10040000L, 0x10001000L, 0x10001040L, 0x00000000L,
  291. 0x10041040L, 0x00041000L, 0x00041000L, 0x00001040L,
  292. 0x00001040L, 0x00040040L, 0x10000000L, 0x10041000L };
  293. static void desfunc(block, keys)
  294. register unsigned long *block, *keys;
  295. {
  296. register unsigned long fval, work, right, leftt;
  297. register int round;
  298. leftt = block[0];
  299. right = block[1];
  300. work = ((leftt >> 4) ^ right) & 0x0f0f0f0fL;
  301. right ^= work;
  302. leftt ^= (work << 4);
  303. work = ((leftt >> 16) ^ right) & 0x0000ffffL;
  304. right ^= work;
  305. leftt ^= (work << 16);
  306. work = ((right >> 2) ^ leftt) & 0x33333333L;
  307. leftt ^= work;
  308. right ^= (work << 2);
  309. work = ((right >> 8) ^ leftt) & 0x00ff00ffL;
  310. leftt ^= work;
  311. right ^= (work << 8);
  312. right = ((right << 1) | ((right >> 31) & 1L)) & 0xffffffffL;
  313. work = (leftt ^ right) & 0xaaaaaaaaL;
  314. leftt ^= work;
  315. right ^= work;
  316. leftt = ((leftt << 1) | ((leftt >> 31) & 1L)) & 0xffffffffL;
  317. for( round = 0; round < 8; round++ ) {
  318. work  = (right << 28) | (right >> 4);
  319. work ^= *keys++;
  320. fval  = SP7[ work  & 0x3fL];
  321. fval |= SP5[(work >>  8) & 0x3fL];
  322. fval |= SP3[(work >> 16) & 0x3fL];
  323. fval |= SP1[(work >> 24) & 0x3fL];
  324. work  = right ^ *keys++;
  325. fval |= SP8[ work  & 0x3fL];
  326. fval |= SP6[(work >>  8) & 0x3fL];
  327. fval |= SP4[(work >> 16) & 0x3fL];
  328. fval |= SP2[(work >> 24) & 0x3fL];
  329. leftt ^= fval;
  330. work  = (leftt << 28) | (leftt >> 4);
  331. work ^= *keys++;
  332. fval  = SP7[ work  & 0x3fL];
  333. fval |= SP5[(work >>  8) & 0x3fL];
  334. fval |= SP3[(work >> 16) & 0x3fL];
  335. fval |= SP1[(work >> 24) & 0x3fL];
  336. work  = leftt ^ *keys++;
  337. fval |= SP8[ work  & 0x3fL];
  338. fval |= SP6[(work >>  8) & 0x3fL];
  339. fval |= SP4[(work >> 16) & 0x3fL];
  340. fval |= SP2[(work >> 24) & 0x3fL];
  341. right ^= fval;
  342. }
  343. right = (right << 31) | (right >> 1);
  344. work = (leftt ^ right) & 0xaaaaaaaaL;
  345. leftt ^= work;
  346. right ^= work;
  347. leftt = (leftt << 31) | (leftt >> 1);
  348. work = ((leftt >> 8) ^ right) & 0x00ff00ffL;
  349. right ^= work;
  350. leftt ^= (work << 8);
  351. work = ((leftt >> 2) ^ right) & 0x33333333L;
  352. right ^= work;
  353. leftt ^= (work << 2);
  354. work = ((right >> 16) ^ leftt) & 0x0000ffffL;
  355. leftt ^= work;
  356. right ^= (work << 16);
  357. work = ((right >> 4) ^ leftt) & 0x0f0f0f0fL;
  358. leftt ^= work;
  359. right ^= (work << 4);
  360. *block++ = right;
  361. *block = leftt;
  362. return;
  363. }
  364. #ifdef D2_DES
  365. void des2key(hexkey, mode) /* stomps on Kn3 too */
  366. unsigned char *hexkey; /* unsigned char[16] */
  367. short mode;
  368. {
  369. short revmod;
  370. revmod = (mode == EN0) ? DE1 : EN0;
  371. deskey(&hexkey[8], revmod);
  372. cpkey(KnR);
  373. deskey(hexkey, mode);
  374. cpkey(Kn3); /* Kn3 = KnL */
  375. return;
  376. }
  377. void Ddes(from, into)
  378. unsigned char *from, *into; /* unsigned char[8] */
  379. {
  380. unsigned long work[2];
  381. scrunch(from, work);
  382. desfunc(work, KnL);
  383. desfunc(work, KnR);
  384. desfunc(work, Kn3);
  385. unscrun(work, into);
  386. return;
  387. }
  388. void D2des(from, into)
  389. unsigned char *from; /* unsigned char[16] */
  390. unsigned char *into; /* unsigned char[16] */
  391. {
  392. unsigned long *right, *l1, swap;
  393. unsigned long leftt[2], bufR[2];
  394. right = bufR;
  395. l1 = &leftt[1];
  396. scrunch(from, leftt);
  397. scrunch(&from[8], right);
  398. desfunc(leftt, KnL);
  399. desfunc(right, KnL);
  400. swap = *l1;
  401. *l1 = *right;
  402. *right = swap;
  403. desfunc(leftt, KnR);
  404. desfunc(right, KnR);
  405. swap = *l1;
  406. *l1 = *right;
  407. *right = swap;
  408. desfunc(leftt, Kn3);
  409. desfunc(right, Kn3);
  410. unscrun(leftt, into);
  411. unscrun(right, &into[8]);
  412. return;
  413. }
  414. void makekey(aptr, kptr)
  415. register char *aptr; /* NULL-terminated  */
  416. register unsigned char *kptr; /* unsigned char[8] */
  417. {
  418. register unsigned char *store;
  419. register int first, i;
  420. unsigned long savek[96];
  421. cpDkey(savek);
  422. des2key(Df_Key, EN0);
  423. for( i = 0; i < 8; i++ ) kptr[i] = Df_Key[i];
  424. first = 1;
  425. while( (*aptr != '') || first ) {
  426. store = kptr;
  427. for( i = 0; i < 8 && (*aptr != ''); i++ ) {
  428. *store++ ^= *aptr & 0x7f;
  429. *aptr++ = '';
  430. }
  431. Ddes(kptr, kptr);
  432. first = 0;
  433. }
  434. useDkey(savek);
  435. return;
  436. }
  437. void make2key(aptr, kptr)
  438. register char *aptr; /* NULL-terminated   */
  439. register unsigned char *kptr; /* unsigned char[16] */
  440. {
  441. register unsigned char *store;
  442. register int first, i;
  443. unsigned long savek[96];
  444. cpDkey(savek);
  445. des2key(Df_Key, EN0);
  446. for( i = 0; i < 16; i++ ) kptr[i] = Df_Key[i];
  447. first = 1;
  448. while( (*aptr != '') || first ) {
  449. store = kptr;
  450. for( i = 0; i < 16 && (*aptr != ''); i++ ) {
  451. *store++ ^= *aptr & 0x7f;
  452. *aptr++ = '';
  453. }
  454. D2des(kptr, kptr);
  455. first = 0;
  456. }
  457. useDkey(savek);
  458. return;
  459. }
  460. #ifndef D3_DES /* D2_DES only */
  461. #ifdef D2_DES /* iff D2_DES! */
  462. void cp2key(into)
  463. register unsigned long *into; /* unsigned long[64] */
  464. {
  465. register unsigned long *from, *endp;
  466. cpkey(into);
  467. into = &into[32];
  468. from = KnR, endp = &KnR[32];
  469. while( from < endp ) *into++ = *from++;
  470. return;
  471. }
  472. void use2key(from) /* stomps on Kn3 too */
  473. register unsigned long *from; /* unsigned long[64] */
  474. {
  475. register unsigned long *to, *endp;
  476. usekey(from);
  477. from = &from[32];
  478. to = KnR, endp = &KnR[32];
  479. while( to < endp ) *to++ = *from++;
  480. cpkey(Kn3); /* Kn3 = KnL */
  481. return;
  482. }
  483. #endif /* iff D2_DES */
  484. #else /* D3_DES too */
  485. static void D3des(unsigned char *, unsigned char *);
  486. void des3key(hexkey, mode)
  487. unsigned char *hexkey; /* unsigned char[24] */
  488. short mode;
  489. {
  490. unsigned char *first, *third;
  491. short revmod;
  492. if( mode == EN0 ) {
  493. revmod = DE1;
  494. first = hexkey;
  495. third = &hexkey[16];
  496. }
  497. else {
  498. revmod = EN0;
  499. first = &hexkey[16];
  500. third = hexkey;
  501. }
  502. deskey(&hexkey[8], revmod);
  503. cpkey(KnR);
  504. deskey(third, mode);
  505. cpkey(Kn3);
  506. deskey(first, mode);
  507. return;
  508. }
  509. void cp3key(into)
  510. register unsigned long *into; /* unsigned long[96] */
  511. {
  512. register unsigned long *from, *endp;
  513. cpkey(into);
  514. into = &into[32];
  515. from = KnR, endp = &KnR[32];
  516. while( from < endp ) *into++ = *from++;
  517. from = Kn3, endp = &Kn3[32];
  518. while( from < endp ) *into++ = *from++;
  519. return;
  520. }
  521. void use3key(from)
  522. register unsigned long *from; /* unsigned long[96] */
  523. {
  524. register unsigned long *to, *endp;
  525. usekey(from);
  526. from = &from[32];
  527. to = KnR, endp = &KnR[32];
  528. while( to < endp ) *to++ = *from++;
  529. to = Kn3, endp = &Kn3[32];
  530. while( to < endp ) *to++ = *from++;
  531. return;
  532. }
  533. static void D3des(from, into) /* amateur theatrics */
  534. unsigned char *from; /* unsigned char[24] */
  535. unsigned char *into; /* unsigned char[24] */
  536. {
  537. unsigned long swap, leftt[2], middl[2], right[2];
  538. scrunch(from, leftt);
  539. scrunch(&from[8], middl);
  540. scrunch(&from[16], right);
  541. desfunc(leftt, KnL);
  542. desfunc(middl, KnL);
  543. desfunc(right, KnL);
  544. swap = leftt[1];
  545. leftt[1] = middl[0];
  546. middl[0] = swap;
  547. swap = middl[1];
  548. middl[1] = right[0];
  549. right[0] = swap;
  550. desfunc(leftt, KnR);
  551. desfunc(middl, KnR);
  552. desfunc(right, KnR);
  553. swap = leftt[1];
  554. leftt[1] = middl[0];
  555. middl[0] = swap;
  556. swap = middl[1];
  557. middl[1] = right[0];
  558. right[0] = swap;
  559. desfunc(leftt, Kn3);
  560. desfunc(middl, Kn3);
  561. desfunc(right, Kn3);
  562. unscrun(leftt, into);
  563. unscrun(middl, &into[8]);
  564. unscrun(right, &into[16]);
  565. return;
  566. }
  567. void make3key(aptr, kptr)
  568. register char *aptr; /* NULL-terminated   */
  569. register unsigned char *kptr; /* unsigned char[24] */
  570. {
  571. register unsigned char *store;
  572. register int first, i;
  573. unsigned long savek[96];
  574. cp3key(savek);
  575. des3key(Df_Key, EN0);
  576. for( i = 0; i < 24; i++ ) kptr[i] = Df_Key[i];
  577. first = 1;
  578. while( (*aptr != '') || first ) {
  579. store = kptr;
  580. for( i = 0; i < 24 && (*aptr != ''); i++ ) {
  581. *store++ ^= *aptr & 0x7f;
  582. *aptr++ = '';
  583. }
  584. D3des(kptr, kptr);
  585. first = 0;
  586. }
  587. use3key(savek);
  588. return;
  589. }
  590. #endif /* D3_DES */
  591. #endif /* D2_DES */
  592. /* Validation sets:
  593.  *
  594.  * Single-length key, single-length plaintext -
  595.  * Key   : 0123 4567 89ab cdef
  596.  * Plain  : 0123 4567 89ab cde7
  597.  * Cipher : c957 4425 6a5e d31d
  598.  *
  599.  * Double-length key, single-length plaintext -
  600.  * Key   : 0123 4567 89ab cdef fedc ba98 7654 3210
  601.  * Plain  : 0123 4567 89ab cde7
  602.  * Cipher : 7f1d 0a77 826b 8aff
  603.  *
  604.  * Double-length key, double-length plaintext -
  605.  * Key   : 0123 4567 89ab cdef fedc ba98 7654 3210
  606.  * Plain  : 0123 4567 89ab cdef 0123 4567 89ab cdff
  607.  * Cipher : 27a0 8440 406a df60 278f 47cf 42d6 15d7
  608.  *
  609.  * Triple-length key, single-length plaintext -
  610.  * Key   : 0123 4567 89ab cdef fedc ba98 7654 3210 89ab cdef 0123 4567
  611.  * Plain  : 0123 4567 89ab cde7
  612.  * Cipher : de0b 7c06 ae5e 0ed5
  613.  *
  614.  * Triple-length key, double-length plaintext -
  615.  * Key   : 0123 4567 89ab cdef fedc ba98 7654 3210 89ab cdef 0123 4567
  616.  * Plain  : 0123 4567 89ab cdef 0123 4567 89ab cdff
  617.  * Cipher : ad0d 1b30 ac17 cf07 0ed1 1c63 81e4 4de5
  618.  *
  619.  * d3des V5.0a rwo 9208.07 18:44 Graven Imagery
  620.  **********************************************************************/