d3des.c
上传用户:maryhy001
上传日期:2007-05-02
资源大小:2317k
文件大小:16k
源码类别:

网格计算

开发平台:

Visual C++

  1. /*
  2.  * This is D3DES (V5.09) by Richard Outerbridge with the double and
  3.  * triple-length support removed for use in VNC.  Also the bytebit[] array
  4.  * has been reversed so that the most significant bit in each byte of the
  5.  * key is ignored, not the least significant.
  6.  *
  7.  * These changes are 
  8.  * Copyright (C) 1999 AT&T Laboratories Cambridge. All Rights Reserved.
  9.  *
  10.  * This software is distributed in the hope that it will be useful,
  11.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  13.  */
  14. /* D3DES (V5.09) -
  15.  *
  16.  * A portable, public domain, version of the Data Encryption Standard.
  17.  *
  18.  * Written with Symantec's THINK (Lightspeed) C by Richard Outerbridge.
  19.  * Thanks to: Dan Hoey for his excellent Initial and Inverse permutation
  20.  * code;  Jim Gillogly & Phil Karn for the DES key schedule code; Dennis
  21.  * Ferguson, Eric Young and Dana How for comparing notes; and Ray Lau,
  22.  * for humouring me on.
  23.  *
  24.  * Copyright (c) 1988,1989,1990,1991,1992 by Richard Outerbridge.
  25.  * (GEnie : OUTER; CIS : [71755,204]) Graven Imagery, 1992.
  26.  */
  27. #include "d3des.h"
  28. static void scrunch(unsigned char *, unsigned long *);
  29. static void unscrun(unsigned long *, unsigned char *);
  30. static void desfunc(unsigned long *, unsigned long *);
  31. static void cookey(unsigned long *);
  32. static unsigned long KnL[32] = { 0L };
  33. static unsigned long KnR[32] = { 0L };
  34. static unsigned long Kn3[32] = { 0L };
  35. static unsigned char Df_Key[24] = {
  36. 0x01,0x23,0x45,0x67,0x89,0xab,0xcd,0xef,
  37. 0xfe,0xdc,0xba,0x98,0x76,0x54,0x32,0x10,
  38. 0x89,0xab,0xcd,0xef,0x01,0x23,0x45,0x67 };
  39. static unsigned short bytebit[8] = {
  40. 01, 02, 04, 010, 020, 040, 0100, 0200 };
  41. static unsigned long bigbyte[24] = {
  42. 0x800000L, 0x400000L, 0x200000L, 0x100000L,
  43. 0x80000L, 0x40000L, 0x20000L, 0x10000L,
  44. 0x8000L, 0x4000L, 0x2000L, 0x1000L,
  45. 0x800L,  0x400L,  0x200L,  0x100L,
  46. 0x80L, 0x40L, 0x20L, 0x10L,
  47. 0x8L, 0x4L, 0x2L, 0x1L };
  48. /* Use the key schedule specified in the Standard (ANSI X3.92-1981). */
  49. static unsigned char pc1[56] = {
  50. 56, 48, 40, 32, 24, 16,  8,  0, 57, 49, 41, 33, 25, 17,
  51.  9,  1, 58, 50, 42, 34, 26, 18, 10,  2, 59, 51, 43, 35,
  52. 62, 54, 46, 38, 30, 22, 14,  6, 61, 53, 45, 37, 29, 21,
  53. 13,  5, 60, 52, 44, 36, 28, 20, 12,  4, 27, 19, 11,  3 };
  54. static unsigned char totrot[16] = {
  55. 1,2,4,6,8,10,12,14,15,17,19,21,23,25,27,28 };
  56. static unsigned char pc2[48] = {
  57. 13, 16, 10, 23,  0,  4,  2, 27, 14,  5, 20,  9,
  58. 22, 18, 11,  3, 25,  7, 15,  6, 26, 19, 12,  1,
  59. 40, 51, 30, 36, 46, 54, 29, 39, 50, 44, 32, 47,
  60. 43, 48, 38, 55, 33, 52, 45, 41, 49, 35, 28, 31 };
  61. void deskey(key, edf) /* Thanks to James Gillogly & Phil Karn! */
  62. unsigned char *key;
  63. int edf;
  64. {
  65. register int i, j, l, m, n;
  66. unsigned char pc1m[56], pcr[56];
  67. unsigned long kn[32];
  68. for ( j = 0; j < 56; j++ ) {
  69. l = pc1[j];
  70. m = l & 07;
  71. pc1m[j] = (key[l >> 3] & bytebit[m]) ? 1 : 0;
  72. }
  73. for( i = 0; i < 16; i++ ) {
  74. if( edf == DE1 ) m = (15 - i) << 1;
  75. else m = i << 1;
  76. n = m + 1;
  77. kn[m] = kn[n] = 0L;
  78. for( j = 0; j < 28; j++ ) {
  79. l = j + totrot[i];
  80. if( l < 28 ) pcr[j] = pc1m[l];
  81. else pcr[j] = pc1m[l - 28];
  82. }
  83. for( j = 28; j < 56; j++ ) {
  84.     l = j + totrot[i];
  85.     if( l < 56 ) pcr[j] = pc1m[l];
  86.     else pcr[j] = pc1m[l - 28];
  87.     }
  88. for( j = 0; j < 24; j++ ) {
  89. if( pcr[pc2[j]] ) kn[m] |= bigbyte[j];
  90. if( pcr[pc2[j+24]] ) kn[n] |= bigbyte[j];
  91. }
  92. }
  93. cookey(kn);
  94. return;
  95. }
  96. static void cookey(raw1)
  97. register unsigned long *raw1;
  98. {
  99. register unsigned long *cook, *raw0;
  100. unsigned long dough[32];
  101. register int i;
  102. cook = dough;
  103. for( i = 0; i < 16; i++, raw1++ ) {
  104. raw0 = raw1++;
  105. *cook  = (*raw0 & 0x00fc0000L) << 6;
  106. *cook |= (*raw0 & 0x00000fc0L) << 10;
  107. *cook |= (*raw1 & 0x00fc0000L) >> 10;
  108. *cook++ |= (*raw1 & 0x00000fc0L) >> 6;
  109. *cook  = (*raw0 & 0x0003f000L) << 12;
  110. *cook |= (*raw0 & 0x0000003fL) << 16;
  111. *cook |= (*raw1 & 0x0003f000L) >> 4;
  112. *cook++ |= (*raw1 & 0x0000003fL);
  113. }
  114. usekey(dough);
  115. return;
  116. }
  117. void cpkey(into)
  118. register unsigned long *into;
  119. {
  120. register unsigned long *from, *endp;
  121. from = KnL, endp = &KnL[32];
  122. while( from < endp ) *into++ = *from++;
  123. return;
  124. }
  125. void usekey(from)
  126. register unsigned long *from;
  127. {
  128. register unsigned long *to, *endp;
  129. to = KnL, endp = &KnL[32];
  130. while( to < endp ) *to++ = *from++;
  131. return;
  132. }
  133. void des(inblock, outblock)
  134. unsigned char *inblock, *outblock;
  135. {
  136. unsigned long work[2];
  137. scrunch(inblock, work);
  138. desfunc(work, KnL);
  139. unscrun(work, outblock);
  140. return;
  141. }
  142. static void scrunch(outof, into)
  143. register unsigned char *outof;
  144. register unsigned long *into;
  145. {
  146. *into  = (*outof++ & 0xffL) << 24;
  147. *into |= (*outof++ & 0xffL) << 16;
  148. *into |= (*outof++ & 0xffL) << 8;
  149. *into++ |= (*outof++ & 0xffL);
  150. *into  = (*outof++ & 0xffL) << 24;
  151. *into |= (*outof++ & 0xffL) << 16;
  152. *into |= (*outof++ & 0xffL) << 8;
  153. *into |= (*outof   & 0xffL);
  154. return;
  155. }
  156. static void unscrun(outof, into)
  157. register unsigned long *outof;
  158. register unsigned char *into;
  159. {
  160. *into++ = (*outof >> 24) & 0xffL;
  161. *into++ = (*outof >> 16) & 0xffL;
  162. *into++ = (*outof >>  8) & 0xffL;
  163. *into++ =  *outof++  & 0xffL;
  164. *into++ = (*outof >> 24) & 0xffL;
  165. *into++ = (*outof >> 16) & 0xffL;
  166. *into++ = (*outof >>  8) & 0xffL;
  167. *into =  *outof  & 0xffL;
  168. return;
  169. }
  170. static unsigned long SP1[64] = {
  171. 0x01010400L, 0x00000000L, 0x00010000L, 0x01010404L,
  172. 0x01010004L, 0x00010404L, 0x00000004L, 0x00010000L,
  173. 0x00000400L, 0x01010400L, 0x01010404L, 0x00000400L,
  174. 0x01000404L, 0x01010004L, 0x01000000L, 0x00000004L,
  175. 0x00000404L, 0x01000400L, 0x01000400L, 0x00010400L,
  176. 0x00010400L, 0x01010000L, 0x01010000L, 0x01000404L,
  177. 0x00010004L, 0x01000004L, 0x01000004L, 0x00010004L,
  178. 0x00000000L, 0x00000404L, 0x00010404L, 0x01000000L,
  179. 0x00010000L, 0x01010404L, 0x00000004L, 0x01010000L,
  180. 0x01010400L, 0x01000000L, 0x01000000L, 0x00000400L,
  181. 0x01010004L, 0x00010000L, 0x00010400L, 0x01000004L,
  182. 0x00000400L, 0x00000004L, 0x01000404L, 0x00010404L,
  183. 0x01010404L, 0x00010004L, 0x01010000L, 0x01000404L,
  184. 0x01000004L, 0x00000404L, 0x00010404L, 0x01010400L,
  185. 0x00000404L, 0x01000400L, 0x01000400L, 0x00000000L,
  186. 0x00010004L, 0x00010400L, 0x00000000L, 0x01010004L };
  187. static unsigned long SP2[64] = {
  188. 0x80108020L, 0x80008000L, 0x00008000L, 0x00108020L,
  189. 0x00100000L, 0x00000020L, 0x80100020L, 0x80008020L,
  190. 0x80000020L, 0x80108020L, 0x80108000L, 0x80000000L,
  191. 0x80008000L, 0x00100000L, 0x00000020L, 0x80100020L,
  192. 0x00108000L, 0x00100020L, 0x80008020L, 0x00000000L,
  193. 0x80000000L, 0x00008000L, 0x00108020L, 0x80100000L,
  194. 0x00100020L, 0x80000020L, 0x00000000L, 0x00108000L,
  195. 0x00008020L, 0x80108000L, 0x80100000L, 0x00008020L,
  196. 0x00000000L, 0x00108020L, 0x80100020L, 0x00100000L,
  197. 0x80008020L, 0x80100000L, 0x80108000L, 0x00008000L,
  198. 0x80100000L, 0x80008000L, 0x00000020L, 0x80108020L,
  199. 0x00108020L, 0x00000020L, 0x00008000L, 0x80000000L,
  200. 0x00008020L, 0x80108000L, 0x00100000L, 0x80000020L,
  201. 0x00100020L, 0x80008020L, 0x80000020L, 0x00100020L,
  202. 0x00108000L, 0x00000000L, 0x80008000L, 0x00008020L,
  203. 0x80000000L, 0x80100020L, 0x80108020L, 0x00108000L };
  204. static unsigned long SP3[64] = {
  205. 0x00000208L, 0x08020200L, 0x00000000L, 0x08020008L,
  206. 0x08000200L, 0x00000000L, 0x00020208L, 0x08000200L,
  207. 0x00020008L, 0x08000008L, 0x08000008L, 0x00020000L,
  208. 0x08020208L, 0x00020008L, 0x08020000L, 0x00000208L,
  209. 0x08000000L, 0x00000008L, 0x08020200L, 0x00000200L,
  210. 0x00020200L, 0x08020000L, 0x08020008L, 0x00020208L,
  211. 0x08000208L, 0x00020200L, 0x00020000L, 0x08000208L,
  212. 0x00000008L, 0x08020208L, 0x00000200L, 0x08000000L,
  213. 0x08020200L, 0x08000000L, 0x00020008L, 0x00000208L,
  214. 0x00020000L, 0x08020200L, 0x08000200L, 0x00000000L,
  215. 0x00000200L, 0x00020008L, 0x08020208L, 0x08000200L,
  216. 0x08000008L, 0x00000200L, 0x00000000L, 0x08020008L,
  217. 0x08000208L, 0x00020000L, 0x08000000L, 0x08020208L,
  218. 0x00000008L, 0x00020208L, 0x00020200L, 0x08000008L,
  219. 0x08020000L, 0x08000208L, 0x00000208L, 0x08020000L,
  220. 0x00020208L, 0x00000008L, 0x08020008L, 0x00020200L };
  221. static unsigned long SP4[64] = {
  222. 0x00802001L, 0x00002081L, 0x00002081L, 0x00000080L,
  223. 0x00802080L, 0x00800081L, 0x00800001L, 0x00002001L,
  224. 0x00000000L, 0x00802000L, 0x00802000L, 0x00802081L,
  225. 0x00000081L, 0x00000000L, 0x00800080L, 0x00800001L,
  226. 0x00000001L, 0x00002000L, 0x00800000L, 0x00802001L,
  227. 0x00000080L, 0x00800000L, 0x00002001L, 0x00002080L,
  228. 0x00800081L, 0x00000001L, 0x00002080L, 0x00800080L,
  229. 0x00002000L, 0x00802080L, 0x00802081L, 0x00000081L,
  230. 0x00800080L, 0x00800001L, 0x00802000L, 0x00802081L,
  231. 0x00000081L, 0x00000000L, 0x00000000L, 0x00802000L,
  232. 0x00002080L, 0x00800080L, 0x00800081L, 0x00000001L,
  233. 0x00802001L, 0x00002081L, 0x00002081L, 0x00000080L,
  234. 0x00802081L, 0x00000081L, 0x00000001L, 0x00002000L,
  235. 0x00800001L, 0x00002001L, 0x00802080L, 0x00800081L,
  236. 0x00002001L, 0x00002080L, 0x00800000L, 0x00802001L,
  237. 0x00000080L, 0x00800000L, 0x00002000L, 0x00802080L };
  238. static unsigned long SP5[64] = {
  239. 0x00000100L, 0x02080100L, 0x02080000L, 0x42000100L,
  240. 0x00080000L, 0x00000100L, 0x40000000L, 0x02080000L,
  241. 0x40080100L, 0x00080000L, 0x02000100L, 0x40080100L,
  242. 0x42000100L, 0x42080000L, 0x00080100L, 0x40000000L,
  243. 0x02000000L, 0x40080000L, 0x40080000L, 0x00000000L,
  244. 0x40000100L, 0x42080100L, 0x42080100L, 0x02000100L,
  245. 0x42080000L, 0x40000100L, 0x00000000L, 0x42000000L,
  246. 0x02080100L, 0x02000000L, 0x42000000L, 0x00080100L,
  247. 0x00080000L, 0x42000100L, 0x00000100L, 0x02000000L,
  248. 0x40000000L, 0x02080000L, 0x42000100L, 0x40080100L,
  249. 0x02000100L, 0x40000000L, 0x42080000L, 0x02080100L,
  250. 0x40080100L, 0x00000100L, 0x02000000L, 0x42080000L,
  251. 0x42080100L, 0x00080100L, 0x42000000L, 0x42080100L,
  252. 0x02080000L, 0x00000000L, 0x40080000L, 0x42000000L,
  253. 0x00080100L, 0x02000100L, 0x40000100L, 0x00080000L,
  254. 0x00000000L, 0x40080000L, 0x02080100L, 0x40000100L };
  255. static unsigned long SP6[64] = {
  256. 0x20000010L, 0x20400000L, 0x00004000L, 0x20404010L,
  257. 0x20400000L, 0x00000010L, 0x20404010L, 0x00400000L,
  258. 0x20004000L, 0x00404010L, 0x00400000L, 0x20000010L,
  259. 0x00400010L, 0x20004000L, 0x20000000L, 0x00004010L,
  260. 0x00000000L, 0x00400010L, 0x20004010L, 0x00004000L,
  261. 0x00404000L, 0x20004010L, 0x00000010L, 0x20400010L,
  262. 0x20400010L, 0x00000000L, 0x00404010L, 0x20404000L,
  263. 0x00004010L, 0x00404000L, 0x20404000L, 0x20000000L,
  264. 0x20004000L, 0x00000010L, 0x20400010L, 0x00404000L,
  265. 0x20404010L, 0x00400000L, 0x00004010L, 0x20000010L,
  266. 0x00400000L, 0x20004000L, 0x20000000L, 0x00004010L,
  267. 0x20000010L, 0x20404010L, 0x00404000L, 0x20400000L,
  268. 0x00404010L, 0x20404000L, 0x00000000L, 0x20400010L,
  269. 0x00000010L, 0x00004000L, 0x20400000L, 0x00404010L,
  270. 0x00004000L, 0x00400010L, 0x20004010L, 0x00000000L,
  271. 0x20404000L, 0x20000000L, 0x00400010L, 0x20004010L };
  272. static unsigned long SP7[64] = {
  273. 0x00200000L, 0x04200002L, 0x04000802L, 0x00000000L,
  274. 0x00000800L, 0x04000802L, 0x00200802L, 0x04200800L,
  275. 0x04200802L, 0x00200000L, 0x00000000L, 0x04000002L,
  276. 0x00000002L, 0x04000000L, 0x04200002L, 0x00000802L,
  277. 0x04000800L, 0x00200802L, 0x00200002L, 0x04000800L,
  278. 0x04000002L, 0x04200000L, 0x04200800L, 0x00200002L,
  279. 0x04200000L, 0x00000800L, 0x00000802L, 0x04200802L,
  280. 0x00200800L, 0x00000002L, 0x04000000L, 0x00200800L,
  281. 0x04000000L, 0x00200800L, 0x00200000L, 0x04000802L,
  282. 0x04000802L, 0x04200002L, 0x04200002L, 0x00000002L,
  283. 0x00200002L, 0x04000000L, 0x04000800L, 0x00200000L,
  284. 0x04200800L, 0x00000802L, 0x00200802L, 0x04200800L,
  285. 0x00000802L, 0x04000002L, 0x04200802L, 0x04200000L,
  286. 0x00200800L, 0x00000000L, 0x00000002L, 0x04200802L,
  287. 0x00000000L, 0x00200802L, 0x04200000L, 0x00000800L,
  288. 0x04000002L, 0x04000800L, 0x00000800L, 0x00200002L };
  289. static unsigned long SP8[64] = {
  290. 0x10001040L, 0x00001000L, 0x00040000L, 0x10041040L,
  291. 0x10000000L, 0x10001040L, 0x00000040L, 0x10000000L,
  292. 0x00040040L, 0x10040000L, 0x10041040L, 0x00041000L,
  293. 0x10041000L, 0x00041040L, 0x00001000L, 0x00000040L,
  294. 0x10040000L, 0x10000040L, 0x10001000L, 0x00001040L,
  295. 0x00041000L, 0x00040040L, 0x10040040L, 0x10041000L,
  296. 0x00001040L, 0x00000000L, 0x00000000L, 0x10040040L,
  297. 0x10000040L, 0x10001000L, 0x00041040L, 0x00040000L,
  298. 0x00041040L, 0x00040000L, 0x10041000L, 0x00001000L,
  299. 0x00000040L, 0x10040040L, 0x00001000L, 0x00041040L,
  300. 0x10001000L, 0x00000040L, 0x10000040L, 0x10040000L,
  301. 0x10040040L, 0x10000000L, 0x00040000L, 0x10001040L,
  302. 0x00000000L, 0x10041040L, 0x00040040L, 0x10000040L,
  303. 0x10040000L, 0x10001000L, 0x10001040L, 0x00000000L,
  304. 0x10041040L, 0x00041000L, 0x00041000L, 0x00001040L,
  305. 0x00001040L, 0x00040040L, 0x10000000L, 0x10041000L };
  306. static void desfunc(block, keys)
  307. register unsigned long *block, *keys;
  308. {
  309. register unsigned long fval, work, right, leftt;
  310. register int round;
  311. leftt = block[0];
  312. right = block[1];
  313. work = ((leftt >> 4) ^ right) & 0x0f0f0f0fL;
  314. right ^= work;
  315. leftt ^= (work << 4);
  316. work = ((leftt >> 16) ^ right) & 0x0000ffffL;
  317. right ^= work;
  318. leftt ^= (work << 16);
  319. work = ((right >> 2) ^ leftt) & 0x33333333L;
  320. leftt ^= work;
  321. right ^= (work << 2);
  322. work = ((right >> 8) ^ leftt) & 0x00ff00ffL;
  323. leftt ^= work;
  324. right ^= (work << 8);
  325. right = ((right << 1) | ((right >> 31) & 1L)) & 0xffffffffL;
  326. work = (leftt ^ right) & 0xaaaaaaaaL;
  327. leftt ^= work;
  328. right ^= work;
  329. leftt = ((leftt << 1) | ((leftt >> 31) & 1L)) & 0xffffffffL;
  330. for( round = 0; round < 8; round++ ) {
  331. work  = (right << 28) | (right >> 4);
  332. work ^= *keys++;
  333. fval  = SP7[ work  & 0x3fL];
  334. fval |= SP5[(work >>  8) & 0x3fL];
  335. fval |= SP3[(work >> 16) & 0x3fL];
  336. fval |= SP1[(work >> 24) & 0x3fL];
  337. work  = right ^ *keys++;
  338. fval |= SP8[ work  & 0x3fL];
  339. fval |= SP6[(work >>  8) & 0x3fL];
  340. fval |= SP4[(work >> 16) & 0x3fL];
  341. fval |= SP2[(work >> 24) & 0x3fL];
  342. leftt ^= fval;
  343. work  = (leftt << 28) | (leftt >> 4);
  344. work ^= *keys++;
  345. fval  = SP7[ work  & 0x3fL];
  346. fval |= SP5[(work >>  8) & 0x3fL];
  347. fval |= SP3[(work >> 16) & 0x3fL];
  348. fval |= SP1[(work >> 24) & 0x3fL];
  349. work  = leftt ^ *keys++;
  350. fval |= SP8[ work  & 0x3fL];
  351. fval |= SP6[(work >>  8) & 0x3fL];
  352. fval |= SP4[(work >> 16) & 0x3fL];
  353. fval |= SP2[(work >> 24) & 0x3fL];
  354. right ^= fval;
  355. }
  356. right = (right << 31) | (right >> 1);
  357. work = (leftt ^ right) & 0xaaaaaaaaL;
  358. leftt ^= work;
  359. right ^= work;
  360. leftt = (leftt << 31) | (leftt >> 1);
  361. work = ((leftt >> 8) ^ right) & 0x00ff00ffL;
  362. right ^= work;
  363. leftt ^= (work << 8);
  364. work = ((leftt >> 2) ^ right) & 0x33333333L;
  365. right ^= work;
  366. leftt ^= (work << 2);
  367. work = ((right >> 16) ^ leftt) & 0x0000ffffL;
  368. leftt ^= work;
  369. right ^= (work << 16);
  370. work = ((right >> 4) ^ leftt) & 0x0f0f0f0fL;
  371. leftt ^= work;
  372. right ^= (work << 4);
  373. *block++ = right;
  374. *block = leftt;
  375. return;
  376. }
  377. /* Validation sets:
  378.  *
  379.  * Single-length key, single-length plaintext -
  380.  * Key   : 0123 4567 89ab cdef
  381.  * Plain  : 0123 4567 89ab cde7
  382.  * Cipher : c957 4425 6a5e d31d
  383.  *
  384.  * Double-length key, single-length plaintext -
  385.  * Key   : 0123 4567 89ab cdef fedc ba98 7654 3210
  386.  * Plain  : 0123 4567 89ab cde7
  387.  * Cipher : 7f1d 0a77 826b 8aff
  388.  *
  389.  * Double-length key, double-length plaintext -
  390.  * Key   : 0123 4567 89ab cdef fedc ba98 7654 3210
  391.  * Plain  : 0123 4567 89ab cdef 0123 4567 89ab cdff
  392.  * Cipher : 27a0 8440 406a df60 278f 47cf 42d6 15d7
  393.  *
  394.  * Triple-length key, single-length plaintext -
  395.  * Key   : 0123 4567 89ab cdef fedc ba98 7654 3210 89ab cdef 0123 4567
  396.  * Plain  : 0123 4567 89ab cde7
  397.  * Cipher : de0b 7c06 ae5e 0ed5
  398.  *
  399.  * Triple-length key, double-length plaintext -
  400.  * Key   : 0123 4567 89ab cdef fedc ba98 7654 3210 89ab cdef 0123 4567
  401.  * Plain  : 0123 4567 89ab cdef 0123 4567 89ab cdff
  402.  * Cipher : ad0d 1b30 ac17 cf07 0ed1 1c63 81e4 4de5
  403.  *
  404.  * d3des V5.0a rwo 9208.07 18:44 Graven Imagery
  405.  **********************************************************************/