home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / misc / volume40 / libdes / part01 next >
Internet Message Format  |  1993-10-14  |  55KB

  1. From: eay@psych.psy.uq.oz.au (Eric Young)
  2. Newsgroups: comp.sources.misc
  3. Subject: v40i008: libdes - DES encryption library, Part01/05
  4. Date: 14 Oct 1993 18:01:32 +0100
  5. Sender: aem@aber.ac.uk
  6. Approved: aem@aber.ac.uk
  7. Message-ID: <csm-v40i008=libdes.180015@aber.ac.uk>
  8. X-Md4-Signature: 49ac6bff40da3fad404d82f113000118
  9.  
  10. Submitted-by: eay@psych.psy.uq.oz.au (Eric Young)
  11. Posting-number: Volume 40, Issue 8
  12. Archive-name: libdes/part01
  13. Environment: C
  14. Supersedes: libdes: Volume 29, Issue 43-46
  15.  
  16.  
  17. This kit builds a DES encryption library and a DES encryption program.
  18. It suports ecb, cbc, ofb, cfb, triple ecb, triple cbc and MIT's pcbc
  19. encryption modes and also has a fast implementation of crypt(3).
  20. It contains support routines to read keys from a terminal,
  21. generate a random key, generate a key from an arbitary length string,
  22. read/write encrypted data from/to a file descriptor.
  23.  
  24. The implementation was written so as to conform with the manual entry
  25. for the des_crypt(3) library routines from MIT's project Athena.
  26.  
  27. destest should be run after compilation to test the des routines.
  28. rpw should be run after compilation to test the read password routines.
  29. The des program is a replacement for the sun des command.  I believe it
  30. conforms to the sun version.
  31.  
  32. The Imakefile is setup for use in the kerberos distribution.
  33.  
  34. These routines are best compiled with gcc or any other good
  35. optimising compiler.
  36. Just turn you optimiser up to the highest settings and run destest
  37. after the build to make sure everything works.
  38.  
  39. I believe these routines are close to the fastest and most portable DES
  40. routines that use small lookup tables (4.5k) that are publicly available.
  41. The fcrypt routine is faster than ufc's fcrypt (when compiling with
  42. gcc2 -O2) on the sparc 2 (1410 vs 1270) but is not so good on other machines
  43. (on a sun3/260 168 vs 336).
  44.  
  45. Eric Young (eay@psych.psy.uq.oz.au)
  46.  
  47. --
  48. #! /bin/sh
  49. # into a shell via "sh file" or similar.  To overwrite existing files,
  50. # type "sh file -c".
  51. # The tool that generated this appeared in the comp.sources.unix newsgroup;
  52. # send mail to comp-sources-unix@uunet.uu.net if you want that tool.
  53. # Contents:  README MANIFEST COPYING des.pl enc_writ.c
  54. # Wrapped by alecm@uk-usenet on Wed Oct 13 10:33:48 1993
  55. PATH=/bin:/usr/bin:/usr/ucb ; export PATH
  56. echo If this archive is complete, you will see the following message:
  57. echo '          "shar: End of archive 1 (of 5)."'
  58. if test -f 'README' -a "${1}" != "-c" ; then 
  59.   echo shar: Will not clobber existing file \"'README'\"
  60. else
  61.   echo shar: Extracting \"'README'\" \(2419 characters\)
  62.   sed "s/^X//" >'README' <<'END_OF_FILE'
  63. X
  64. X            libdes, Version 3.00 93/10/07
  65. X
  66. X        Copyright (c) 1993, Eric Young
  67. X              All rights reserved.
  68. X
  69. X    This program is free software; you can redistribute it and/or modify
  70. X    it under the terms of either:
  71. X    
  72. X    a) the GNU General Public License as published by the Free
  73. X    Software Foundation; either version 1, or (at your option) any
  74. X    later version, or
  75. X
  76. X    b) the "Artistic License" which comes with this Kit.
  77. X
  78. X    This program is distributed in the hope that it will be useful,
  79. X    but WITHOUT ANY WARRANTY; without even the implied warranty of
  80. X    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See either
  81. X    the GNU General Public License or the Artistic License for more details.
  82. X
  83. X    You should have received a copy of the Artistic License with this
  84. X    Kit, in the file named "Artistic".  If not, I'll be glad to provide one.
  85. X
  86. X    You should also have received a copy of the GNU General Public License
  87. X    along with this program; if not, write to the Free Software
  88. X    Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  89. X---
  90. XThis kit builds a DES encryption library and a DES encryption program.
  91. XIt suports ecb, cbc, ofb, cfb, triple ecb, triple cbc and MIT's pcbc
  92. Xencryption modes and also has a fast implementation of crypt(3).
  93. XIt contains support routines to read keys from a terminal,
  94. Xgenerate a random key, generate a key from an arbitary length string,
  95. Xread/write encrypted data from/to a file descriptor.
  96. X
  97. XThe implementation was written so as to conform with the manual entry
  98. Xfor the des_crypt(3) library routines from MIT's project Athena.
  99. X
  100. Xdestest should be run after compilation to test the des routines.
  101. Xrpw should be run after compilation to test the read password routines.
  102. XThe des program is a replacement for the sun des command.  I believe it
  103. Xconforms to the sun version.
  104. X
  105. XThe Imakefile is setup for use in the kerberos distribution.
  106. X
  107. XThese routines are best compiled with gcc or any other good
  108. Xoptimising compiler.
  109. XJust turn you optimiser up to the highest settings and run destest
  110. Xafter the build to make sure everything works.
  111. X
  112. XI believe these routines are close to the fastest and most portable DES
  113. Xroutines that use small lookup tables (4.5k) that are publicly available.
  114. XThe fcrypt routine is faster than ufc's fcrypt (when compiling with
  115. Xgcc2 -O2) on the sparc 2 (1410 vs 1270) but is not so good on other machines
  116. X(on a sun3/260 168 vs 336).
  117. X
  118. XEric Young (eay@psych.psy.uq.oz.au)
  119. END_OF_FILE
  120.   if test 2419 -ne `wc -c <'README'`; then
  121.     echo shar: \"'README'\" unpacked with wrong size!
  122.   fi
  123.   # end of 'README'
  124. fi
  125. if test -f 'MANIFEST' -a "${1}" != "-c" ; then 
  126.   echo shar: Will not clobber existing file \"'MANIFEST'\"
  127. else
  128.   echo shar: Extracting \"'MANIFEST'\" \(1565 characters\)
  129.   sed "s/^X//" >'MANIFEST' <<'END_OF_FILE'
  130. X   File Name        Archive #    Description
  131. X----------------------------------------------------------
  132. XREADME                     1    
  133. XMANIFEST                   1    
  134. X3cbc_enc.c                 5    
  135. X3ecb_enc.c                 5    
  136. XARTISTIC                   4    
  137. XCHANGES                    5    
  138. XCOPYING                    1    
  139. XFILES                      4    
  140. XINSTALL                    5    
  141. XImakefile                  5    
  142. XKERBEROS                   5    
  143. XMODES.DES                  4    
  144. XPC1                        5    
  145. XPC2                        5    
  146. XVERSION                    3    
  147. Xcbc_cksm.c                 3    
  148. Xcbc_enc.c                  5    
  149. Xcfb_enc.c                  5    
  150. Xdes.c                      2    
  151. Xdes.h                      4    
  152. Xdes.man                    4    
  153. Xdes.pl                     1    
  154. Xdes_crypt.man              3    
  155. Xdes_locl.h                 3    
  156. Xdestest.c                  2    
  157. XdoIP                       5    
  158. XdoPC1                      5    
  159. XdoPC2                      2    
  160. Xecb_enc.c                  4    
  161. Xenc_read.c                 4    
  162. Xenc_writ.c                 1    
  163. Xfcrypt.c                   2    
  164. Xmakefile                   4    
  165. Xofb_enc.c                  5    
  166. Xpcbc_enc.c                 4    
  167. Xpodd.h                     5    
  168. Xqud_cksm.c                 5    
  169. Xrand_key.c                 5    
  170. Xread_pwd.c                 3    
  171. Xrpw.c                      5    
  172. Xset_key.c                  4    
  173. Xshifts.pl                  5    
  174. Xsk.h                       3    
  175. Xspeed.c                    4    
  176. Xspr.h                      3    
  177. Xstr2key.c                  4    
  178. Xtestdes.pl                 3    
  179. Xtimes                      4    
  180. Xvms.com                    4    
  181. END_OF_FILE
  182.   if test 1565 -ne `wc -c <'MANIFEST'`; then
  183.     echo shar: \"'MANIFEST'\" unpacked with wrong size!
  184.   fi
  185.   # end of 'MANIFEST'
  186. fi
  187. if test -f 'COPYING' -a "${1}" != "-c" ; then 
  188.   echo shar: Will not clobber existing file \"'COPYING'\"
  189. else
  190.   echo shar: Extracting \"'COPYING'\" \(25510 characters\)
  191.   sed "s/^X//" >'COPYING' <<'END_OF_FILE'
  192. XCopyright (C) 1993 Eric Young
  193. X
  194. XThis is a DES implementation written by Eric Young (eay@psych.psy.uq.oz.au)
  195. XThe implementation was written so as to conform with the manual entry
  196. Xfor the des_crypt(3) library routines from MIT's project Athena.
  197. X
  198. X
  199. X
  200. X          GNU LIBRARY GENERAL PUBLIC LICENSE
  201. X               Version 2, June 1991
  202. X
  203. X Copyright (C) 1991 Free Software Foundation, Inc.
  204. X                    675 Mass Ave, Cambridge, MA 02139, USA
  205. X Everyone is permitted to copy and distribute verbatim copies
  206. X of this license document, but changing it is not allowed.
  207. X
  208. X[This is the first released version of the library GPL.  It is
  209. X numbered 2 because it goes with version 2 of the ordinary GPL.]
  210. X
  211. X                Preamble
  212. X
  213. X  The licenses for most software are designed to take away your
  214. Xfreedom to share and change it.  By contrast, the GNU General Public
  215. XLicenses are intended to guarantee your freedom to share and change
  216. Xfree software--to make sure the software is free for all its users.
  217. X
  218. X  This license, the Library General Public License, applies to some
  219. Xspecially designated Free Software Foundation software, and to any
  220. Xother libraries whose authors decide to use it.  You can use it for
  221. Xyour libraries, too.
  222. X
  223. X  When we speak of free software, we are referring to freedom, not
  224. Xprice.  Our General Public Licenses are designed to make sure that you
  225. Xhave the freedom to distribute copies of free software (and charge for
  226. Xthis service if you wish), that you receive source code or can get it
  227. Xif you want it, that you can change the software or use pieces of it
  228. Xin new free programs; and that you know you can do these things.
  229. X
  230. X  To protect your rights, we need to make restrictions that forbid
  231. Xanyone to deny you these rights or to ask you to surrender the rights.
  232. XThese restrictions translate to certain responsibilities for you if
  233. Xyou distribute copies of the library, or if you modify it.
  234. X
  235. X  For example, if you distribute copies of the library, whether gratis
  236. Xor for a fee, you must give the recipients all the rights that we gave
  237. Xyou.  You must make sure that they, too, receive or can get the source
  238. Xcode.  If you link a program with the library, you must provide
  239. Xcomplete object files to the recipients so that they can relink them
  240. Xwith the library, after making changes to the library and recompiling
  241. Xit.  And you must show them these terms so they know their rights.
  242. X
  243. X  Our method of protecting your rights has two steps: (1) copyright
  244. Xthe library, and (2) offer you this license which gives you legal
  245. Xpermission to copy, distribute and/or modify the library.
  246. X
  247. X  Also, for each distributor's protection, we want to make certain
  248. Xthat everyone understands that there is no warranty for this free
  249. Xlibrary.  If the library is modified by someone else and passed on, we
  250. Xwant its recipients to know that what they have is not the original
  251. Xversion, so that any problems introduced by others will not reflect on
  252. Xthe original authors' reputations.
  253. X
  254. X  Finally, any free program is threatened constantly by software
  255. Xpatents.  We wish to avoid the danger that companies distributing free
  256. Xsoftware will individually obtain patent licenses, thus in effect
  257. Xtransforming the program into proprietary software.  To prevent this,
  258. Xwe have made it clear that any patent must be licensed for everyone's
  259. Xfree use or not licensed at all.
  260. X
  261. X  Most GNU software, including some libraries, is covered by the ordinary
  262. XGNU General Public License, which was designed for utility programs.  This
  263. Xlicense, the GNU Library General Public License, applies to certain
  264. Xdesignated libraries.  This license is quite different from the ordinary
  265. Xone; be sure to read it in full, and don't assume that anything in it is
  266. Xthe same as in the ordinary license.
  267. X
  268. X  The reason we have a separate public license for some libraries is that
  269. Xthey blur the distinction we usually make between modifying or adding to a
  270. Xprogram and simply using it.  Linking a program with a library, without
  271. Xchanging the library, is in some sense simply using the library, and is
  272. Xanalogous to running a utility program or application program.  However, in
  273. Xa textual and legal sense, the linked executable is a combined work, a
  274. Xderivative of the original library, and the ordinary General Public License
  275. Xtreats it as such.
  276. X
  277. X  Because of this blurred distinction, using the ordinary General
  278. XPublic License for libraries did not effectively promote software
  279. Xsharing, because most developers did not use the libraries.  We
  280. Xconcluded that weaker conditions might promote sharing better.
  281. X
  282. X  However, unrestricted linking of non-free programs would deprive the
  283. Xusers of those programs of all benefit from the free status of the
  284. Xlibraries themselves.  This Library General Public License is intended to
  285. Xpermit developers of non-free programs to use free libraries, while
  286. Xpreserving your freedom as a user of such programs to change the free
  287. Xlibraries that are incorporated in them.  (We have not seen how to achieve
  288. Xthis as regards changes in header files, but we have achieved it as regards
  289. Xchanges in the actual functions of the Library.)  The hope is that this
  290. Xwill lead to faster development of free libraries.
  291. X
  292. X  The precise terms and conditions for copying, distribution and
  293. Xmodification follow.  Pay close attention to the difference between a
  294. X"work based on the library" and a "work that uses the library".  The
  295. Xformer contains code derived from the library, while the latter only
  296. Xworks together with the library.
  297. X
  298. X  Note that it is possible for a library to be covered by the ordinary
  299. XGeneral Public License rather than by this special one.
  300. X
  301. X          GNU LIBRARY GENERAL PUBLIC LICENSE
  302. X   TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
  303. X
  304. X  0. This License Agreement applies to any software library which
  305. Xcontains a notice placed by the copyright holder or other authorized
  306. Xparty saying it may be distributed under the terms of this Library
  307. XGeneral Public License (also called "this License").  Each licensee is
  308. Xaddressed as "you".
  309. X
  310. X  A "library" means a collection of software functions and/or data
  311. Xprepared so as to be conveniently linked with application programs
  312. X(which use some of those functions and data) to form executables.
  313. X
  314. X  The "Library", below, refers to any such software library or work
  315. Xwhich has been distributed under these terms.  A "work based on the
  316. XLibrary" means either the Library or any derivative work under
  317. Xcopyright law: that is to say, a work containing the Library or a
  318. Xportion of it, either verbatim or with modifications and/or translated
  319. Xstraightforwardly into another language.  (Hereinafter, translation is
  320. Xincluded without limitation in the term "modification".)
  321. X
  322. X  "Source code" for a work means the preferred form of the work for
  323. Xmaking modifications to it.  For a library, complete source code means
  324. Xall the source code for all modules it contains, plus any associated
  325. Xinterface definition files, plus the scripts used to control compilation
  326. Xand installation of the library.
  327. X
  328. X  Activities other than copying, distribution and modification are not
  329. Xcovered by this License; they are outside its scope.  The act of
  330. Xrunning a program using the Library is not restricted, and output from
  331. Xsuch a program is covered only if its contents constitute a work based
  332. Xon the Library (independent of the use of the Library in a tool for
  333. Xwriting it).  Whether that is true depends on what the Library does
  334. Xand what the program that uses the Library does.
  335. X  
  336. X  1. You may copy and distribute verbatim copies of the Library's
  337. Xcomplete source code as you receive it, in any medium, provided that
  338. Xyou conspicuously and appropriately publish on each copy an
  339. Xappropriate copyright notice and disclaimer of warranty; keep intact
  340. Xall the notices that refer to this License and to the absence of any
  341. Xwarranty; and distribute a copy of this License along with the
  342. XLibrary.
  343. X
  344. X  You may charge a fee for the physical act of transferring a copy,
  345. Xand you may at your option offer warranty protection in exchange for a
  346. Xfee.
  347. X
  348. X  2. You may modify your copy or copies of the Library or any portion
  349. Xof it, thus forming a work based on the Library, and copy and
  350. Xdistribute such modifications or work under the terms of Section 1
  351. Xabove, provided that you also meet all of these conditions:
  352. X
  353. X    a) The modified work must itself be a software library.
  354. X
  355. X    b) You must cause the files modified to carry prominent notices
  356. X    stating that you changed the files and the date of any change.
  357. X
  358. X    c) You must cause the whole of the work to be licensed at no
  359. X    charge to all third parties under the terms of this License.
  360. X
  361. X    d) If a facility in the modified Library refers to a function or a
  362. X    table of data to be supplied by an application program that uses
  363. X    the facility, other than as an argument passed when the facility
  364. X    is invoked, then you must make a good faith effort to ensure that,
  365. X    in the event an application does not supply such function or
  366. X    table, the facility still operates, and performs whatever part of
  367. X    its purpose remains meaningful.
  368. X
  369. X    (For example, a function in a library to compute square roots has
  370. X    a purpose that is entirely well-defined independent of the
  371. X    application.  Therefore, Subsection 2d requires that any
  372. X    application-supplied function or table used by this function must
  373. X    be optional: if the application does not supply it, the square
  374. X    root function must still compute square roots.)
  375. X
  376. XThese requirements apply to the modified work as a whole.  If
  377. Xidentifiable sections of that work are not derived from the Library,
  378. Xand can be reasonably considered independent and separate works in
  379. Xthemselves, then this License, and its terms, do not apply to those
  380. Xsections when you distribute them as separate works.  But when you
  381. Xdistribute the same sections as part of a whole which is a work based
  382. Xon the Library, the distribution of the whole must be on the terms of
  383. Xthis License, whose permissions for other licensees extend to the
  384. Xentire whole, and thus to each and every part regardless of who wrote
  385. Xit.
  386. X
  387. XThus, it is not the intent of this section to claim rights or contest
  388. Xyour rights to work written entirely by you; rather, the intent is to
  389. Xexercise the right to control the distribution of derivative or
  390. Xcollective works based on the Library.
  391. X
  392. XIn addition, mere aggregation of another work not based on the Library
  393. Xwith the Library (or with a work based on the Library) on a volume of
  394. Xa storage or distribution medium does not bring the other work under
  395. Xthe scope of this License.
  396. X
  397. X  3. You may opt to apply the terms of the ordinary GNU General Public
  398. XLicense instead of this License to a given copy of the Library.  To do
  399. Xthis, you must alter all the notices that refer to this License, so
  400. Xthat they refer to the ordinary GNU General Public License, version 2,
  401. Xinstead of to this License.  (If a newer version than version 2 of the
  402. Xordinary GNU General Public License has appeared, then you can specify
  403. Xthat version instead if you wish.)  Do not make any other change in
  404. Xthese notices.
  405. X
  406. X  Once this change is made in a given copy, it is irreversible for
  407. Xthat copy, so the ordinary GNU General Public License applies to all
  408. Xsubsequent copies and derivative works made from that copy.
  409. X
  410. X  This option is useful when you wish to copy part of the code of
  411. Xthe Library into a program that is not a library.
  412. X
  413. X  4. You may copy and distribute the Library (or a portion or
  414. Xderivative of it, under Section 2) in object code or executable form
  415. Xunder the terms of Sections 1 and 2 above provided that you accompany
  416. Xit with the complete corresponding machine-readable source code, which
  417. Xmust be distributed under the terms of Sections 1 and 2 above on a
  418. Xmedium customarily used for software interchange.
  419. X
  420. X  If distribution of object code is made by offering access to copy
  421. Xfrom a designated place, then offering equivalent access to copy the
  422. Xsource code from the same place satisfies the requirement to
  423. Xdistribute the source code, even though third parties are not
  424. Xcompelled to copy the source along with the object code.
  425. X
  426. X  5. A program that contains no derivative of any portion of the
  427. XLibrary, but is designed to work with the Library by being compiled or
  428. Xlinked with it, is called a "work that uses the Library".  Such a
  429. Xwork, in isolation, is not a derivative work of the Library, and
  430. Xtherefore falls outside the scope of this License.
  431. X
  432. X  However, linking a "work that uses the Library" with the Library
  433. Xcreates an executable that is a derivative of the Library (because it
  434. Xcontains portions of the Library), rather than a "work that uses the
  435. Xlibrary".  The executable is therefore covered by this License.
  436. XSection 6 states terms for distribution of such executables.
  437. X
  438. X  When a "work that uses the Library" uses material from a header file
  439. Xthat is part of the Library, the object code for the work may be a
  440. Xderivative work of the Library even though the source code is not.
  441. XWhether this is true is especially significant if the work can be
  442. Xlinked without the Library, or if the work is itself a library.  The
  443. Xthreshold for this to be true is not precisely defined by law.
  444. X
  445. X  If such an object file uses only numerical parameters, data
  446. Xstructure layouts and accessors, and small macros and small inline
  447. Xfunctions (ten lines or less in length), then the use of the object
  448. Xfile is unrestricted, regardless of whether it is legally a derivative
  449. Xwork.  (Executables containing this object code plus portions of the
  450. XLibrary will still fall under Section 6.)
  451. X
  452. X  Otherwise, if the work is a derivative of the Library, you may
  453. Xdistribute the object code for the work under the terms of Section 6.
  454. XAny executables containing that work also fall under Section 6,
  455. Xwhether or not they are linked directly with the Library itself.
  456. X
  457. X  6. As an exception to the Sections above, you may also compile or
  458. Xlink a "work that uses the Library" with the Library to produce a
  459. Xwork containing portions of the Library, and distribute that work
  460. Xunder terms of your choice, provided that the terms permit
  461. Xmodification of the work for the customer's own use and reverse
  462. Xengineering for debugging such modifications.
  463. X
  464. X  You must give prominent notice with each copy of the work that the
  465. XLibrary is used in it and that the Library and its use are covered by
  466. Xthis License.  You must supply a copy of this License.  If the work
  467. Xduring execution displays copyright notices, you must include the
  468. Xcopyright notice for the Library among them, as well as a reference
  469. Xdirecting the user to the copy of this License.  Also, you must do one
  470. Xof these things:
  471. X
  472. X    a) Accompany the work with the complete corresponding
  473. X    machine-readable source code for the Library including whatever
  474. X    changes were used in the work (which must be distributed under
  475. X    Sections 1 and 2 above); and, if the work is an executable linked
  476. X    with the Library, with the complete machine-readable "work that
  477. X    uses the Library", as object code and/or source code, so that the
  478. X    user can modify the Library and then relink to produce a modified
  479. X    executable containing the modified Library.  (It is understood
  480. X    that the user who changes the contents of definitions files in the
  481. X    Library will not necessarily be able to recompile the application
  482. X    to use the modified definitions.)
  483. X
  484. X    b) Accompany the work with a written offer, valid for at
  485. X    least three years, to give the same user the materials
  486. X    specified in Subsection 6a, above, for a charge no more
  487. X    than the cost of performing this distribution.
  488. X
  489. X    c) If distribution of the work is made by offering access to copy
  490. X    from a designated place, offer equivalent access to copy the above
  491. X    specified materials from the same place.
  492. X
  493. X    d) Verify that the user has already received a copy of these
  494. X    materials or that you have already sent this user a copy.
  495. X
  496. X  For an executable, the required form of the "work that uses the
  497. XLibrary" must include any data and utility programs needed for
  498. Xreproducing the executable from it.  However, as a special exception,
  499. Xthe source code distributed need not include anything that is normally
  500. Xdistributed (in either source or binary form) with the major
  501. Xcomponents (compiler, kernel, and so on) of the operating system on
  502. Xwhich the executable runs, unless that component itself accompanies
  503. Xthe executable.
  504. X
  505. X  It may happen that this requirement contradicts the license
  506. Xrestrictions of other proprietary libraries that do not normally
  507. Xaccompany the operating system.  Such a contradiction means you cannot
  508. Xuse both them and the Library together in an executable that you
  509. Xdistribute.
  510. X
  511. X  7. You may place library facilities that are a work based on the
  512. XLibrary side-by-side in a single library together with other library
  513. Xfacilities not covered by this License, and distribute such a combined
  514. Xlibrary, provided that the separate distribution of the work based on
  515. Xthe Library and of the other library facilities is otherwise
  516. Xpermitted, and provided that you do these two things:
  517. X
  518. X    a) Accompany the combined library with a copy of the same work
  519. X    based on the Library, uncombined with any other library
  520. X    facilities.  This must be distributed under the terms of the
  521. X    Sections above.
  522. X
  523. X    b) Give prominent notice with the combined library of the fact
  524. X    that part of it is a work based on the Library, and explaining
  525. X    where to find the accompanying uncombined form of the same work.
  526. X
  527. X  8. You may not copy, modify, sublicense, link with, or distribute
  528. Xthe Library except as expressly provided under this License.  Any
  529. Xattempt otherwise to copy, modify, sublicense, link with, or
  530. Xdistribute the Library is void, and will automatically terminate your
  531. Xrights under this License.  However, parties who have received copies,
  532. Xor rights, from you under this License will not have their licenses
  533. Xterminated so long as such parties remain in full compliance.
  534. X
  535. X  9. You are not required to accept this License, since you have not
  536. Xsigned it.  However, nothing else grants you permission to modify or
  537. Xdistribute the Library or its derivative works.  These actions are
  538. Xprohibited by law if you do not accept this License.  Therefore, by
  539. Xmodifying or distributing the Library (or any work based on the
  540. XLibrary), you indicate your acceptance of this License to do so, and
  541. Xall its terms and conditions for copying, distributing or modifying
  542. Xthe Library or works based on it.
  543. X
  544. X  10. Each time you redistribute the Library (or any work based on the
  545. XLibrary), the recipient automatically receives a license from the
  546. Xoriginal licensor to copy, distribute, link with or modify the Library
  547. Xsubject to these terms and conditions.  You may not impose any further
  548. Xrestrictions on the recipients' exercise of the rights granted herein.
  549. XYou are not responsible for enforcing compliance by third parties to
  550. Xthis License.
  551. X
  552. X  11. If, as a consequence of a court judgment or allegation of patent
  553. Xinfringement or for any other reason (not limited to patent issues),
  554. Xconditions are imposed on you (whether by court order, agreement or
  555. Xotherwise) that contradict the conditions of this License, they do not
  556. Xexcuse you from the conditions of this License.  If you cannot
  557. Xdistribute so as to satisfy simultaneously your obligations under this
  558. XLicense and any other pertinent obligations, then as a consequence you
  559. Xmay not distribute the Library at all.  For example, if a patent
  560. Xlicense would not permit royalty-free redistribution of the Library by
  561. Xall those who receive copies directly or indirectly through you, then
  562. Xthe only way you could satisfy both it and this License would be to
  563. Xrefrain entirely from distribution of the Library.
  564. X
  565. XIf any portion of this section is held invalid or unenforceable under any
  566. Xparticular circumstance, the balance of the section is intended to apply,
  567. Xand the section as a whole is intended to apply in other circumstances.
  568. X
  569. XIt is not the purpose of this section to induce you to infringe any
  570. Xpatents or other property right claims or to contest validity of any
  571. Xsuch claims; this section has the sole purpose of protecting the
  572. Xintegrity of the free software distribution system which is
  573. Ximplemented by public license practices.  Many people have made
  574. Xgenerous contributions to the wide range of software distributed
  575. Xthrough that system in reliance on consistent application of that
  576. Xsystem; it is up to the author/donor to decide if he or she is willing
  577. Xto distribute software through any other system and a licensee cannot
  578. Ximpose that choice.
  579. X
  580. XThis section is intended to make thoroughly clear what is believed to
  581. Xbe a consequence of the rest of this License.
  582. X
  583. X  12. If the distribution and/or use of the Library is restricted in
  584. Xcertain countries either by patents or by copyrighted interfaces, the
  585. Xoriginal copyright holder who places the Library under this License may add
  586. Xan explicit geographical distribution limitation excluding those countries,
  587. Xso that distribution is permitted only in or among countries not thus
  588. Xexcluded.  In such case, this License incorporates the limitation as if
  589. Xwritten in the body of this License.
  590. X
  591. X  13. The Free Software Foundation may publish revised and/or new
  592. Xversions of the Library General Public License from time to time.
  593. XSuch new versions will be similar in spirit to the present version,
  594. Xbut may differ in detail to address new problems or concerns.
  595. X
  596. XEach version is given a distinguishing version number.  If the Library
  597. Xspecifies a version number of this License which applies to it and
  598. X"any later version", you have the option of following the terms and
  599. Xconditions either of that version or of any later version published by
  600. Xthe Free Software Foundation.  If the Library does not specify a
  601. Xlicense version number, you may choose any version ever published by
  602. Xthe Free Software Foundation.
  603. X
  604. X  14. If you wish to incorporate parts of the Library into other free
  605. Xprograms whose distribution conditions are incompatible with these,
  606. Xwrite to the author to ask for permission.  For software which is
  607. Xcopyrighted by the Free Software Foundation, write to the Free
  608. XSoftware Foundation; we sometimes make exceptions for this.  Our
  609. Xdecision will be guided by the two goals of preserving the free status
  610. Xof all derivatives of our free software and of promoting the sharing
  611. Xand reuse of software generally.
  612. X
  613. X                NO WARRANTY
  614. X
  615. X  15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO
  616. XWARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW.
  617. XEXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR
  618. XOTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY
  619. XKIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE
  620. XIMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
  621. XPURPOSE.  THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE
  622. XLIBRARY IS WITH YOU.  SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME
  623. XTHE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
  624. X
  625. X  16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN
  626. XWRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY
  627. XAND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU
  628. XFOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR
  629. XCONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE
  630. XLIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING
  631. XRENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A
  632. XFAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF
  633. XSUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
  634. XDAMAGES.
  635. X
  636. X             END OF TERMS AND CONDITIONS
  637. X
  638. X     Appendix: How to Apply These Terms to Your New Libraries
  639. X
  640. X  If you develop a new library, and you want it to be of the greatest
  641. Xpossible use to the public, we recommend making it free software that
  642. Xeveryone can redistribute and change.  You can do so by permitting
  643. Xredistribution under these terms (or, alternatively, under the terms of the
  644. Xordinary General Public License).
  645. X
  646. X  To apply these terms, attach the following notices to the library.  It is
  647. Xsafest to attach them to the start of each source file to most effectively
  648. Xconvey the exclusion of warranty; and each file should have at least the
  649. X"copyright" line and a pointer to where the full notice is found.
  650. X
  651. X    <one line to give the library's name and a brief idea of what it does.>
  652. X    Copyright (C) <year>  <name of author>
  653. X
  654. X    This library is free software; you can redistribute it and/or
  655. X    modify it under the terms of the GNU Library General Public
  656. X    License as published by the Free Software Foundation; either
  657. X    version 2 of the License, or (at your option) any later version.
  658. X
  659. X    This library is distributed in the hope that it will be useful,
  660. X    but WITHOUT ANY WARRANTY; without even the implied warranty of
  661. X    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
  662. X    Library General Public License for more details.
  663. X
  664. X    You should have received a copy of the GNU Library General Public
  665. X    License along with this library; if not, write to the Free
  666. X    Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  667. X
  668. XAlso add information on how to contact you by electronic and paper mail.
  669. X
  670. XYou should also get your employer (if you work as a programmer) or your
  671. Xschool, if any, to sign a "copyright disclaimer" for the library, if
  672. Xnecessary.  Here is a sample; alter the names:
  673. X
  674. X  Yoyodyne, Inc., hereby disclaims all copyright interest in the
  675. X  library `Frob' (a library for tweaking knobs) written by James Random Hacker.
  676. X
  677. X  <signature of Ty Coon>, 1 April 1990
  678. X  Ty Coon, President of Vice
  679. X
  680. XThat's all there is to it!
  681. END_OF_FILE
  682.   if test 25510 -ne `wc -c <'COPYING'`; then
  683.     echo shar: \"'COPYING'\" unpacked with wrong size!
  684.   fi
  685.   # end of 'COPYING'
  686. fi
  687. if test -f 'des.pl' -a "${1}" != "-c" ; then 
  688.   echo shar: Will not clobber existing file \"'des.pl'\"
  689. else
  690.   echo shar: Extracting \"'des.pl'\" \(17839 characters\)
  691.   sed "s/^X//" >'des.pl' <<'END_OF_FILE'
  692. X#!/usr/local/bin/perl
  693. X# Copyright (C) 1993 Eric Young
  694. X# des.pl - eric young 22/11/1991 eay@psych.psy.uq.oz.au
  695. X# eay - 92/08/31 - I think I have fixed all problems for 64bit
  696. X# versions of perl but I could be wrong since I have not tested it yet :-).
  697. X#
  698. X# This is an implementation of DES in perl.
  699. X# The two routines (des_set_key and des_ecb_encrypt)
  700. X# take 8 byte objects as arguments.
  701. X#
  702. X# des_set_key takes an 8 byte string as a key and returns a key schedule
  703. X# for use in calls to des_ecb_encrypt.
  704. X# des_ecb_encrypt takes three arguments, the first is a key schedule
  705. X# (make sure to pass it by reference with the *), the second is 1
  706. X# to encrypt, 0 to decrypt.  The third argument is an 8 byte object
  707. X# to encrypt.  The function returns an 8 byte object that has been
  708. X# DES encrypted.
  709. X#
  710. X# example:
  711. X# require 'des.pl'
  712. X#
  713. X# $key =pack("C8",0x12,0x23,0x45,0x67,0x89,0xab,0xcd,0xef);
  714. X# @ks=  &des_set_key($key);
  715. X#
  716. X# $outbytes= &des_ecb_encrypt(*ks,1,$data);
  717. X# @enc =unpack("C8",$outbytes);
  718. X#
  719. X
  720. Xpackage des;
  721. X
  722. X# The following 8 arrays are used in des_set_key
  723. X@skb0=(
  724. X# for C bits (numbered as per FIPS 46) 1 2 3 4 5 6 
  725. X0x00000000,0x00000010,0x20000000,0x20000010,
  726. X0x00010000,0x00010010,0x20010000,0x20010010,
  727. X0x00000800,0x00000810,0x20000800,0x20000810,
  728. X0x00010800,0x00010810,0x20010800,0x20010810,
  729. X0x00000020,0x00000030,0x20000020,0x20000030,
  730. X0x00010020,0x00010030,0x20010020,0x20010030,
  731. X0x00000820,0x00000830,0x20000820,0x20000830,
  732. X0x00010820,0x00010830,0x20010820,0x20010830,
  733. X0x00080000,0x00080010,0x20080000,0x20080010,
  734. X0x00090000,0x00090010,0x20090000,0x20090010,
  735. X0x00080800,0x00080810,0x20080800,0x20080810,
  736. X0x00090800,0x00090810,0x20090800,0x20090810,
  737. X0x00080020,0x00080030,0x20080020,0x20080030,
  738. X0x00090020,0x00090030,0x20090020,0x20090030,
  739. X0x00080820,0x00080830,0x20080820,0x20080830,
  740. X0x00090820,0x00090830,0x20090820,0x20090830,
  741. X);
  742. X@skb1=(
  743. X# for C bits (numbered as per FIPS 46) 7 8 10 11 12 13 
  744. X0x00000000,0x02000000,0x00002000,0x02002000,
  745. X0x00200000,0x02200000,0x00202000,0x02202000,
  746. X0x00000004,0x02000004,0x00002004,0x02002004,
  747. X0x00200004,0x02200004,0x00202004,0x02202004,
  748. X0x00000400,0x02000400,0x00002400,0x02002400,
  749. X0x00200400,0x02200400,0x00202400,0x02202400,
  750. X0x00000404,0x02000404,0x00002404,0x02002404,
  751. X0x00200404,0x02200404,0x00202404,0x02202404,
  752. X0x10000000,0x12000000,0x10002000,0x12002000,
  753. X0x10200000,0x12200000,0x10202000,0x12202000,
  754. X0x10000004,0x12000004,0x10002004,0x12002004,
  755. X0x10200004,0x12200004,0x10202004,0x12202004,
  756. X0x10000400,0x12000400,0x10002400,0x12002400,
  757. X0x10200400,0x12200400,0x10202400,0x12202400,
  758. X0x10000404,0x12000404,0x10002404,0x12002404,
  759. X0x10200404,0x12200404,0x10202404,0x12202404,
  760. X);
  761. X@skb2=(
  762. X# for C bits (numbered as per FIPS 46) 14 15 16 17 19 20 
  763. X0x00000000,0x00000001,0x00040000,0x00040001,
  764. X0x01000000,0x01000001,0x01040000,0x01040001,
  765. X0x00000002,0x00000003,0x00040002,0x00040003,
  766. X0x01000002,0x01000003,0x01040002,0x01040003,
  767. X0x00000200,0x00000201,0x00040200,0x00040201,
  768. X0x01000200,0x01000201,0x01040200,0x01040201,
  769. X0x00000202,0x00000203,0x00040202,0x00040203,
  770. X0x01000202,0x01000203,0x01040202,0x01040203,
  771. X0x08000000,0x08000001,0x08040000,0x08040001,
  772. X0x09000000,0x09000001,0x09040000,0x09040001,
  773. X0x08000002,0x08000003,0x08040002,0x08040003,
  774. X0x09000002,0x09000003,0x09040002,0x09040003,
  775. X0x08000200,0x08000201,0x08040200,0x08040201,
  776. X0x09000200,0x09000201,0x09040200,0x09040201,
  777. X0x08000202,0x08000203,0x08040202,0x08040203,
  778. X0x09000202,0x09000203,0x09040202,0x09040203,
  779. X);
  780. X@skb3=(
  781. X# for C bits (numbered as per FIPS 46) 21 23 24 26 27 28 
  782. X0x00000000,0x00100000,0x00000100,0x00100100,
  783. X0x00000008,0x00100008,0x00000108,0x00100108,
  784. X0x00001000,0x00101000,0x00001100,0x00101100,
  785. X0x00001008,0x00101008,0x00001108,0x00101108,
  786. X0x04000000,0x04100000,0x04000100,0x04100100,
  787. X0x04000008,0x04100008,0x04000108,0x04100108,
  788. X0x04001000,0x04101000,0x04001100,0x04101100,
  789. X0x04001008,0x04101008,0x04001108,0x04101108,
  790. X0x00020000,0x00120000,0x00020100,0x00120100,
  791. X0x00020008,0x00120008,0x00020108,0x00120108,
  792. X0x00021000,0x00121000,0x00021100,0x00121100,
  793. X0x00021008,0x00121008,0x00021108,0x00121108,
  794. X0x04020000,0x04120000,0x04020100,0x04120100,
  795. X0x04020008,0x04120008,0x04020108,0x04120108,
  796. X0x04021000,0x04121000,0x04021100,0x04121100,
  797. X0x04021008,0x04121008,0x04021108,0x04121108,
  798. X);
  799. X@skb4=(
  800. X# for D bits (numbered as per FIPS 46) 1 2 3 4 5 6 
  801. X0x00000000,0x10000000,0x00010000,0x10010000,
  802. X0x00000004,0x10000004,0x00010004,0x10010004,
  803. X0x20000000,0x30000000,0x20010000,0x30010000,
  804. X0x20000004,0x30000004,0x20010004,0x30010004,
  805. X0x00100000,0x10100000,0x00110000,0x10110000,
  806. X0x00100004,0x10100004,0x00110004,0x10110004,
  807. X0x20100000,0x30100000,0x20110000,0x30110000,
  808. X0x20100004,0x30100004,0x20110004,0x30110004,
  809. X0x00001000,0x10001000,0x00011000,0x10011000,
  810. X0x00001004,0x10001004,0x00011004,0x10011004,
  811. X0x20001000,0x30001000,0x20011000,0x30011000,
  812. X0x20001004,0x30001004,0x20011004,0x30011004,
  813. X0x00101000,0x10101000,0x00111000,0x10111000,
  814. X0x00101004,0x10101004,0x00111004,0x10111004,
  815. X0x20101000,0x30101000,0x20111000,0x30111000,
  816. X0x20101004,0x30101004,0x20111004,0x30111004,
  817. X);
  818. X@skb5=(
  819. X# for D bits (numbered as per FIPS 46) 8 9 11 12 13 14 
  820. X0x00000000,0x08000000,0x00000008,0x08000008,
  821. X0x00000400,0x08000400,0x00000408,0x08000408,
  822. X0x00020000,0x08020000,0x00020008,0x08020008,
  823. X0x00020400,0x08020400,0x00020408,0x08020408,
  824. X0x00000001,0x08000001,0x00000009,0x08000009,
  825. X0x00000401,0x08000401,0x00000409,0x08000409,
  826. X0x00020001,0x08020001,0x00020009,0x08020009,
  827. X0x00020401,0x08020401,0x00020409,0x08020409,
  828. X0x02000000,0x0A000000,0x02000008,0x0A000008,
  829. X0x02000400,0x0A000400,0x02000408,0x0A000408,
  830. X0x02020000,0x0A020000,0x02020008,0x0A020008,
  831. X0x02020400,0x0A020400,0x02020408,0x0A020408,
  832. X0x02000001,0x0A000001,0x02000009,0x0A000009,
  833. X0x02000401,0x0A000401,0x02000409,0x0A000409,
  834. X0x02020001,0x0A020001,0x02020009,0x0A020009,
  835. X0x02020401,0x0A020401,0x02020409,0x0A020409,
  836. X);
  837. X@skb6=(
  838. X# for D bits (numbered as per FIPS 46) 16 17 18 19 20 21 
  839. X0x00000000,0x00000100,0x00080000,0x00080100,
  840. X0x01000000,0x01000100,0x01080000,0x01080100,
  841. X0x00000010,0x00000110,0x00080010,0x00080110,
  842. X0x01000010,0x01000110,0x01080010,0x01080110,
  843. X0x00200000,0x00200100,0x00280000,0x00280100,
  844. X0x01200000,0x01200100,0x01280000,0x01280100,
  845. X0x00200010,0x00200110,0x00280010,0x00280110,
  846. X0x01200010,0x01200110,0x01280010,0x01280110,
  847. X0x00000200,0x00000300,0x00080200,0x00080300,
  848. X0x01000200,0x01000300,0x01080200,0x01080300,
  849. X0x00000210,0x00000310,0x00080210,0x00080310,
  850. X0x01000210,0x01000310,0x01080210,0x01080310,
  851. X0x00200200,0x00200300,0x00280200,0x00280300,
  852. X0x01200200,0x01200300,0x01280200,0x01280300,
  853. X0x00200210,0x00200310,0x00280210,0x00280310,
  854. X0x01200210,0x01200310,0x01280210,0x01280310,
  855. X);
  856. X@skb7=(
  857. X# for D bits (numbered as per FIPS 46) 22 23 24 25 27 28 
  858. X0x00000000,0x04000000,0x00040000,0x04040000,
  859. X0x00000002,0x04000002,0x00040002,0x04040002,
  860. X0x00002000,0x04002000,0x00042000,0x04042000,
  861. X0x00002002,0x04002002,0x00042002,0x04042002,
  862. X0x00000020,0x04000020,0x00040020,0x04040020,
  863. X0x00000022,0x04000022,0x00040022,0x04040022,
  864. X0x00002020,0x04002020,0x00042020,0x04042020,
  865. X0x00002022,0x04002022,0x00042022,0x04042022,
  866. X0x00000800,0x04000800,0x00040800,0x04040800,
  867. X0x00000802,0x04000802,0x00040802,0x04040802,
  868. X0x00002800,0x04002800,0x00042800,0x04042800,
  869. X0x00002802,0x04002802,0x00042802,0x04042802,
  870. X0x00000820,0x04000820,0x00040820,0x04040820,
  871. X0x00000822,0x04000822,0x00040822,0x04040822,
  872. X0x00002820,0x04002820,0x00042820,0x04042820,
  873. X0x00002822,0x04002822,0x00042822,0x04042822,
  874. X);
  875. X
  876. X@shifts2=(0,0,1,1,1,1,1,1,0,1,1,1,1,1,1,0);
  877. X
  878. X# used in ecb_encrypt
  879. X@SP0=(
  880. X0x00410100, 0x00010000, 0x40400000, 0x40410100,
  881. X0x00400000, 0x40010100, 0x40010000, 0x40400000,
  882. X0x40010100, 0x00410100, 0x00410000, 0x40000100,
  883. X0x40400100, 0x00400000, 0x00000000, 0x40010000,
  884. X0x00010000, 0x40000000, 0x00400100, 0x00010100,
  885. X0x40410100, 0x00410000, 0x40000100, 0x00400100,
  886. X0x40000000, 0x00000100, 0x00010100, 0x40410000,
  887. X0x00000100, 0x40400100, 0x40410000, 0x00000000,
  888. X0x00000000, 0x40410100, 0x00400100, 0x40010000,
  889. X0x00410100, 0x00010000, 0x40000100, 0x00400100,
  890. X0x40410000, 0x00000100, 0x00010100, 0x40400000,
  891. X0x40010100, 0x40000000, 0x40400000, 0x00410000,
  892. X0x40410100, 0x00010100, 0x00410000, 0x40400100,
  893. X0x00400000, 0x40000100, 0x40010000, 0x00000000,
  894. X0x00010000, 0x00400000, 0x40400100, 0x00410100,
  895. X0x40000000, 0x40410000, 0x00000100, 0x40010100,
  896. X);
  897. X@SP1=(
  898. X0x08021002, 0x00000000, 0x00021000, 0x08020000,
  899. X0x08000002, 0x00001002, 0x08001000, 0x00021000,
  900. X0x00001000, 0x08020002, 0x00000002, 0x08001000,
  901. X0x00020002, 0x08021000, 0x08020000, 0x00000002,
  902. X0x00020000, 0x08001002, 0x08020002, 0x00001000,
  903. X0x00021002, 0x08000000, 0x00000000, 0x00020002,
  904. X0x08001002, 0x00021002, 0x08021000, 0x08000002,
  905. X0x08000000, 0x00020000, 0x00001002, 0x08021002,
  906. X0x00020002, 0x08021000, 0x08001000, 0x00021002,
  907. X0x08021002, 0x00020002, 0x08000002, 0x00000000,
  908. X0x08000000, 0x00001002, 0x00020000, 0x08020002,
  909. X0x00001000, 0x08000000, 0x00021002, 0x08001002,
  910. X0x08021000, 0x00001000, 0x00000000, 0x08000002,
  911. X0x00000002, 0x08021002, 0x00021000, 0x08020000,
  912. X0x08020002, 0x00020000, 0x00001002, 0x08001000,
  913. X0x08001002, 0x00000002, 0x08020000, 0x00021000,
  914. X);
  915. X@SP2=(
  916. X0x20800000, 0x00808020, 0x00000020, 0x20800020,
  917. X0x20008000, 0x00800000, 0x20800020, 0x00008020,
  918. X0x00800020, 0x00008000, 0x00808000, 0x20000000,
  919. X0x20808020, 0x20000020, 0x20000000, 0x20808000,
  920. X0x00000000, 0x20008000, 0x00808020, 0x00000020,
  921. X0x20000020, 0x20808020, 0x00008000, 0x20800000,
  922. X0x20808000, 0x00800020, 0x20008020, 0x00808000,
  923. X0x00008020, 0x00000000, 0x00800000, 0x20008020,
  924. X0x00808020, 0x00000020, 0x20000000, 0x00008000,
  925. X0x20000020, 0x20008000, 0x00808000, 0x20800020,
  926. X0x00000000, 0x00808020, 0x00008020, 0x20808000,
  927. X0x20008000, 0x00800000, 0x20808020, 0x20000000,
  928. X0x20008020, 0x20800000, 0x00800000, 0x20808020,
  929. X0x00008000, 0x00800020, 0x20800020, 0x00008020,
  930. X0x00800020, 0x00000000, 0x20808000, 0x20000020,
  931. X0x20800000, 0x20008020, 0x00000020, 0x00808000,
  932. X);
  933. X@SP3=(
  934. X0x00080201, 0x02000200, 0x00000001, 0x02080201,
  935. X0x00000000, 0x02080000, 0x02000201, 0x00080001,
  936. X0x02080200, 0x02000001, 0x02000000, 0x00000201,
  937. X0x02000001, 0x00080201, 0x00080000, 0x02000000,
  938. X0x02080001, 0x00080200, 0x00000200, 0x00000001,
  939. X0x00080200, 0x02000201, 0x02080000, 0x00000200,
  940. X0x00000201, 0x00000000, 0x00080001, 0x02080200,
  941. X0x02000200, 0x02080001, 0x02080201, 0x00080000,
  942. X0x02080001, 0x00000201, 0x00080000, 0x02000001,
  943. X0x00080200, 0x02000200, 0x00000001, 0x02080000,
  944. X0x02000201, 0x00000000, 0x00000200, 0x00080001,
  945. X0x00000000, 0x02080001, 0x02080200, 0x00000200,
  946. X0x02000000, 0x02080201, 0x00080201, 0x00080000,
  947. X0x02080201, 0x00000001, 0x02000200, 0x00080201,
  948. X0x00080001, 0x00080200, 0x02080000, 0x02000201,
  949. X0x00000201, 0x02000000, 0x02000001, 0x02080200,
  950. X);
  951. X@SP4=(
  952. X0x01000000, 0x00002000, 0x00000080, 0x01002084,
  953. X0x01002004, 0x01000080, 0x00002084, 0x01002000,
  954. X0x00002000, 0x00000004, 0x01000004, 0x00002080,
  955. X0x01000084, 0x01002004, 0x01002080, 0x00000000,
  956. X0x00002080, 0x01000000, 0x00002004, 0x00000084,
  957. X0x01000080, 0x00002084, 0x00000000, 0x01000004,
  958. X0x00000004, 0x01000084, 0x01002084, 0x00002004,
  959. X0x01002000, 0x00000080, 0x00000084, 0x01002080,
  960. X0x01002080, 0x01000084, 0x00002004, 0x01002000,
  961. X0x00002000, 0x00000004, 0x01000004, 0x01000080,
  962. X0x01000000, 0x00002080, 0x01002084, 0x00000000,
  963. X0x00002084, 0x01000000, 0x00000080, 0x00002004,
  964. X0x01000084, 0x00000080, 0x00000000, 0x01002084,
  965. X0x01002004, 0x01002080, 0x00000084, 0x00002000,
  966. X0x00002080, 0x01002004, 0x01000080, 0x00000084,
  967. X0x00000004, 0x00002084, 0x01002000, 0x01000004,
  968. X);
  969. X@SP5=(
  970. X0x10000008, 0x00040008, 0x00000000, 0x10040400,
  971. X0x00040008, 0x00000400, 0x10000408, 0x00040000,
  972. X0x00000408, 0x10040408, 0x00040400, 0x10000000,
  973. X0x10000400, 0x10000008, 0x10040000, 0x00040408,
  974. X0x00040000, 0x10000408, 0x10040008, 0x00000000,
  975. X0x00000400, 0x00000008, 0x10040400, 0x10040008,
  976. X0x10040408, 0x10040000, 0x10000000, 0x00000408,
  977. X0x00000008, 0x00040400, 0x00040408, 0x10000400,
  978. X0x00000408, 0x10000000, 0x10000400, 0x00040408,
  979. X0x10040400, 0x00040008, 0x00000000, 0x10000400,
  980. X0x10000000, 0x00000400, 0x10040008, 0x00040000,
  981. X0x00040008, 0x10040408, 0x00040400, 0x00000008,
  982. X0x10040408, 0x00040400, 0x00040000, 0x10000408,
  983. X0x10000008, 0x10040000, 0x00040408, 0x00000000,
  984. X0x00000400, 0x10000008, 0x10000408, 0x10040400,
  985. X0x10040000, 0x00000408, 0x00000008, 0x10040008,
  986. X);
  987. X@SP6=(
  988. X0x00000800, 0x00000040, 0x00200040, 0x80200000,
  989. X0x80200840, 0x80000800, 0x00000840, 0x00000000,
  990. X0x00200000, 0x80200040, 0x80000040, 0x00200800,
  991. X0x80000000, 0x00200840, 0x00200800, 0x80000040,
  992. X0x80200040, 0x00000800, 0x80000800, 0x80200840,
  993. X0x00000000, 0x00200040, 0x80200000, 0x00000840,
  994. X0x80200800, 0x80000840, 0x00200840, 0x80000000,
  995. X0x80000840, 0x80200800, 0x00000040, 0x00200000,
  996. X0x80000840, 0x00200800, 0x80200800, 0x80000040,
  997. X0x00000800, 0x00000040, 0x00200000, 0x80200800,
  998. X0x80200040, 0x80000840, 0x00000840, 0x00000000,
  999. X0x00000040, 0x80200000, 0x80000000, 0x00200040,
  1000. X0x00000000, 0x80200040, 0x00200040, 0x00000840,
  1001. X0x80000040, 0x00000800, 0x80200840, 0x00200000,
  1002. X0x00200840, 0x80000000, 0x80000800, 0x80200840,
  1003. X0x80200000, 0x00200840, 0x00200800, 0x80000800,
  1004. X);
  1005. X@SP7=(
  1006. X0x04100010, 0x04104000, 0x00004010, 0x00000000,
  1007. X0x04004000, 0x00100010, 0x04100000, 0x04104010,
  1008. X0x00000010, 0x04000000, 0x00104000, 0x00004010,
  1009. X0x00104010, 0x04004010, 0x04000010, 0x04100000,
  1010. X0x00004000, 0x00104010, 0x00100010, 0x04004000,
  1011. X0x04104010, 0x04000010, 0x00000000, 0x00104000,
  1012. X0x04000000, 0x00100000, 0x04004010, 0x04100010,
  1013. X0x00100000, 0x00004000, 0x04104000, 0x00000010,
  1014. X0x00100000, 0x00004000, 0x04000010, 0x04104010,
  1015. X0x00004010, 0x04000000, 0x00000000, 0x00104000,
  1016. X0x04100010, 0x04004010, 0x04004000, 0x00100010,
  1017. X0x04104000, 0x00000010, 0x00100010, 0x04004000,
  1018. X0x04104010, 0x00100000, 0x04100000, 0x04000010,
  1019. X0x00104000, 0x00004010, 0x04004010, 0x04100000,
  1020. X0x00000010, 0x04104000, 0x00104010, 0x00000000,
  1021. X0x04000000, 0x04100010, 0x00004000, 0x00104010,
  1022. X);
  1023. X
  1024. Xsub main'des_set_key
  1025. X    {
  1026. X    local($param)=@_;
  1027. X    local(@key);
  1028. X    local($c,$d,$i,$s,$t);
  1029. X    local(@ks)=();
  1030. X
  1031. X    # Get the bytes in the order we want.
  1032. X    @key=unpack("C8",$param);
  1033. X
  1034. X    $c=    ($key[0]    )|
  1035. X        ($key[1]<< 8)|
  1036. X        ($key[2]<<16)|
  1037. X        ($key[3]<<24);
  1038. X    $d=    ($key[4]    )|
  1039. X        ($key[5]<< 8)|
  1040. X        ($key[6]<<16)|
  1041. X        ($key[7]<<24);
  1042. X
  1043. X    &doPC1(*c,*d);
  1044. X
  1045. X    for $i (@shifts2)
  1046. X        {
  1047. X        if ($i)
  1048. X            {
  1049. X            $c=($c>>2)|($c<<26);
  1050. X            $d=($d>>2)|($d<<26);
  1051. X            }
  1052. X        else
  1053. X            {
  1054. X            $c=($c>>1)|($c<<27);
  1055. X            $d=($d>>1)|($d<<27);
  1056. X            }
  1057. X        $c&=0x0fffffff;
  1058. X        $d&=0x0fffffff;
  1059. X        $s=    $skb0[ ($c    )&0x3f                 ]|
  1060. X            $skb1[(($c>> 6)&0x03)|(($c>> 7)&0x3c)]|
  1061. X            $skb2[(($c>>13)&0x0f)|(($c>>14)&0x30)]|
  1062. X            $skb3[(($c>>20)&0x01)|(($c>>21)&0x06) |
  1063. X                         (($c>>22)&0x38)];
  1064. X        $t=     $skb4[ ($d    )&0x3f                ]|
  1065. X            $skb5[(($d>> 7)&0x03)|(($d>> 8)&0x3c)]|
  1066. X            $skb6[ ($d>>15)&0x3f                 ]|
  1067. X            $skb7[(($d>>21)&0x0f)|(($d>>22)&0x30)];
  1068. X        push(@ks,(($t<<16)|($s&0x0000ffff))&0xffffffff);
  1069. X        $s=      ($s>>16)|($t&0xffff0000) ;
  1070. X        push(@ks,(($s<<4)|($s>>28))&0xffffffff);
  1071. X        }
  1072. X    @ks;
  1073. X    }
  1074. X
  1075. Xsub doPC1
  1076. X    {
  1077. X    local(*a,*b)=@_;
  1078. X    local($t);
  1079. X
  1080. X    $t=(($b>>4)^$a)&0x0f0f0f0f;
  1081. X    $b^=($t<<4); $a^=$t;
  1082. X    # do $a first 
  1083. X    $t=(($a<<18)^$a)&0xcccc0000;
  1084. X    $a=$a^$t^($t>>18);
  1085. X    $t=(($a<<17)^$a)&0xaaaa0000;
  1086. X    $a=$a^$t^($t>>17);
  1087. X    $t=(($a<< 8)^$a)&0x00ff0000;
  1088. X    $a=$a^$t^($t>> 8);
  1089. X    $t=(($a<<17)^$a)&0xaaaa0000;
  1090. X    $a=$a^$t^($t>>17);
  1091. X
  1092. X    # now do $b
  1093. X    $t=(($b<<24)^$b)&0xff000000;
  1094. X    $b=$b^$t^($t>>24);
  1095. X    $t=(($b<< 8)^$b)&0x00ff0000;
  1096. X    $b=$b^$t^($t>> 8);
  1097. X    $t=(($b<<14)^$b)&0x33330000;
  1098. X    $b=$b^$t^($t>>14);
  1099. X    $b=(($b&0x00aa00aa)<<7)|(($b&0x55005500)>>7)|($b&0xaa55aa55);
  1100. X    $b=($b>>8)|(($a&0xf0000000)>>4);
  1101. X    $a&=0x0fffffff;
  1102. X    }
  1103. X
  1104. Xsub doIP
  1105. X    {
  1106. X    local(*a,*b)=@_;
  1107. X    local($t);
  1108. X
  1109. X    $t=(($b>> 4)^$a)&0x0f0f0f0f;
  1110. X    $b^=($t<< 4); $a^=$t;
  1111. X    $t=(($a>>16)^$b)&0x0000ffff;
  1112. X    $a^=($t<<16); $b^=$t;
  1113. X    $t=(($b>> 2)^$a)&0x33333333;
  1114. X    $b^=($t<< 2); $a^=$t;
  1115. X    $t=(($a>> 8)^$b)&0x00ff00ff;
  1116. X    $a^=($t<< 8); $b^=$t;
  1117. X    $t=(($b>> 1)^$a)&0x55555555;
  1118. X    $b^=($t<< 1); $a^=$t;
  1119. X    $t=$a;
  1120. X    $a=$b&0xffffffff;
  1121. X    $b=$t&0xffffffff;
  1122. X    }
  1123. X
  1124. Xsub doFP
  1125. X    {
  1126. X    local(*a,*b)=@_;
  1127. X    local($t);
  1128. X
  1129. X    $t=(($b>> 1)^$a)&0x55555555;
  1130. X    $b^=($t<< 1); $a^=$t;
  1131. X    $t=(($a>> 8)^$b)&0x00ff00ff;
  1132. X    $a^=($t<< 8); $b^=$t;
  1133. X    $t=(($b>> 2)^$a)&0x33333333;
  1134. X    $b^=($t<< 2); $a^=$t;
  1135. X    $t=(($a>>16)^$b)&0x0000ffff;
  1136. X    $a^=($t<<16); $b^=$t;
  1137. X    $t=(($b>> 4)^$a)&0x0f0f0f0f;
  1138. X    $b^=($t<< 4); $a^=$t;
  1139. X    $a&=0xffffffff;
  1140. X    $b&=0xffffffff;
  1141. X    }
  1142. X
  1143. Xsub main'des_ecb_encrypt
  1144. X    {
  1145. X    local(*ks,$encrypt,$in)=@_;
  1146. X    local($l,$r,$inc,$start,$end,$i,$t,$u,@input);
  1147. X    
  1148. X    @input=unpack("C8",$in);
  1149. X    # Get the bytes in the order we want.
  1150. X    $l=    ($input[0]    )|
  1151. X        ($input[1]<< 8)|
  1152. X        ($input[2]<<16)|
  1153. X        ($input[3]<<24);
  1154. X    $r=    ($input[4]    )|
  1155. X        ($input[5]<< 8)|
  1156. X        ($input[6]<<16)|
  1157. X        ($input[7]<<24);
  1158. X
  1159. X    $l&=0xffffffff;
  1160. X    $r&=0xffffffff;
  1161. X    &doIP(*l,*r);
  1162. X    if ($encrypt)
  1163. X        {
  1164. X        for ($i=0; $i<32; $i+=4)
  1165. X            {
  1166. X            $t=(($r<<1)|($r>>31))&0xffffffff;
  1167. X            $u=$t^$ks[$i  ];
  1168. X            $t=$t^$ks[$i+1];
  1169. X            $t=(($t>>4)|($t<<28))&0xffffffff;
  1170. X            $l^=    $SP1[ $t     &0x3f]|
  1171. X                $SP3[($t>> 8)&0x3f]|
  1172. X                $SP5[($t>>16)&0x3f]|
  1173. X                $SP7[($t>>24)&0x3f]|
  1174. X                $SP0[ $u     &0x3f]|
  1175. X                $SP2[($u>> 8)&0x3f]|
  1176. X                $SP4[($u>>16)&0x3f]|
  1177. X                $SP6[($u>>24)&0x3f];
  1178. X
  1179. X            $t=(($l<<1)|($l>>31))&0xffffffff;
  1180. X            $u=$t^$ks[$i+2];
  1181. X            $t=$t^$ks[$i+3];
  1182. X            $t=(($t>>4)|($t<<28))&0xffffffff;
  1183. X            $r^=    $SP1[ $t     &0x3f]|
  1184. X                $SP3[($t>> 8)&0x3f]|
  1185. X                $SP5[($t>>16)&0x3f]|
  1186. X                $SP7[($t>>24)&0x3f]|
  1187. X                $SP0[ $u     &0x3f]|
  1188. X                $SP2[($u>> 8)&0x3f]|
  1189. X                $SP4[($u>>16)&0x3f]|
  1190. X                $SP6[($u>>24)&0x3f];
  1191. X            }
  1192. X        }
  1193. X    else    
  1194. X        {
  1195. X        for ($i=30; $i>0; $i-=4)
  1196. X            {
  1197. X            $t=(($r<<1)|($r>>31))&0xffffffff;
  1198. X            $u=$t^$ks[$i  ];
  1199. X            $t=$t^$ks[$i+1];
  1200. X            $t=(($t>>4)|($t<<28))&0xffffffff;
  1201. X            $l^=    $SP1[ $t     &0x3f]|
  1202. X                $SP3[($t>> 8)&0x3f]|
  1203. X                $SP5[($t>>16)&0x3f]|
  1204. X                $SP7[($t>>24)&0x3f]|
  1205. X                $SP0[ $u     &0x3f]|
  1206. X                $SP2[($u>> 8)&0x3f]|
  1207. X                $SP4[($u>>16)&0x3f]|
  1208. X                $SP6[($u>>24)&0x3f];
  1209. X
  1210. X            $t=(($l<<1)|($l>>31))&0xffffffff;
  1211. X            $u=$t^$ks[$i-2];
  1212. X            $t=$t^$ks[$i-1];
  1213. X            $t=(($t>>4)|($t<<28))&0xffffffff;
  1214. X            $r^=    $SP1[ $t     &0x3f]|
  1215. X                $SP3[($t>> 8)&0x3f]|
  1216. X                $SP5[($t>>16)&0x3f]|
  1217. X                $SP7[($t>>24)&0x3f]|
  1218. X                $SP0[ $u     &0x3f]|
  1219. X                $SP2[($u>> 8)&0x3f]|
  1220. X                $SP4[($u>>16)&0x3f]|
  1221. X                $SP6[($u>>24)&0x3f];
  1222. X            }
  1223. X        }
  1224. X    &doFP(*l,*r);
  1225. X    pack("C8",$l&0xff,$l>>8,$l>>16,$l>>24,
  1226. X          $r&0xff,$r>>8,$r>>16,$r>>24);
  1227. X    }
  1228. END_OF_FILE
  1229.   if test 17839 -ne `wc -c <'des.pl'`; then
  1230.     echo shar: \"'des.pl'\" unpacked with wrong size!
  1231.   fi
  1232.   # end of 'des.pl'
  1233. fi
  1234. if test -f 'enc_writ.c' -a "${1}" != "-c" ; then 
  1235.   echo shar: Will not clobber existing file \"'enc_writ.c'\"
  1236. else
  1237.   echo shar: Extracting \"'enc_writ.c'\" \(1718 characters\)
  1238.   sed "s/^X//" >'enc_writ.c' <<'END_OF_FILE'
  1239. X/* enc_writ.c */
  1240. X/* Copyright (C) 1993 Eric Young - see README for more details */
  1241. X#include <errno.h>
  1242. X#include "des_locl.h"
  1243. X
  1244. Xint des_enc_write(fd,buf,len,sched,iv)
  1245. Xint fd;
  1246. Xchar *buf;
  1247. Xint len;
  1248. Xdes_key_schedule sched;
  1249. Xdes_cblock *iv;
  1250. X    {
  1251. X    long rnum;
  1252. X    int i,j,k,outnum;
  1253. X    char outbuf[BSIZE+HDRSIZE];
  1254. X    char shortbuf[8];
  1255. X    char *p;
  1256. X    static int start=1;
  1257. X
  1258. X    /* If we are sending less than 8 bytes, the same char will look
  1259. X     * the same if we don't pad it out with random bytes */
  1260. X    if (start)
  1261. X        {
  1262. X        start=0;
  1263. X        srandom(time(NULL));
  1264. X        }
  1265. X
  1266. X    /* lets recurse if we want to send the data in small chunks */
  1267. X    if (len > MAXWRITE)
  1268. X        {
  1269. X        j=0;
  1270. X        for (i=0; i<len; i+=k)
  1271. X            {
  1272. X            k=des_enc_write(fd,&(buf[i]),
  1273. X                ((len-i) > MAXWRITE)?MAXWRITE:(len-i),sched,iv);
  1274. X            if (k < 0)
  1275. X                return(k);
  1276. X            else
  1277. X                j+=k;
  1278. X            }
  1279. X        return(j);
  1280. X        }
  1281. X
  1282. X    /* write length first */
  1283. X    p=outbuf;
  1284. X    l2n(len,p);
  1285. X
  1286. X    /* pad short strings */
  1287. X    if (len < 8)
  1288. X        {
  1289. X        p=shortbuf;
  1290. X        bcopy(buf,shortbuf,len);
  1291. X        for (i=len; i<8; i++)
  1292. X            shortbuf[i]=random();
  1293. X        rnum=8;
  1294. X        }
  1295. X    else
  1296. X        {
  1297. X        p=buf;
  1298. X        rnum=((len+7)/8*8); /* round up to nearest eight */
  1299. X        }
  1300. X
  1301. X    if (des_rw_mode & DES_PCBC_MODE)
  1302. X        pcbc_encrypt((des_cblock *)p,(des_cblock *)&(outbuf[HDRSIZE]),
  1303. X            (long)((len<8)?8:len),sched,iv,DES_ENCRYPT); 
  1304. X    else
  1305. X        cbc_encrypt((des_cblock *)p,(des_cblock *)&(outbuf[HDRSIZE]),
  1306. X            (long)((len<8)?8:len),sched,iv,DES_ENCRYPT); 
  1307. X
  1308. X    /* output */
  1309. X    outnum=rnum+HDRSIZE;
  1310. X
  1311. X    for (j=0; j<outnum; j+=i)
  1312. X        {
  1313. X        /* eay 26/08/92 I was not doing writing from where we
  1314. X         * got upto. */
  1315. X        i=write(fd,&(outbuf[j]),(int)(outnum-j));
  1316. X        if (i == -1)
  1317. X            {
  1318. X            if (errno == EINTR)
  1319. X                i=0;
  1320. X            else     /* This is really a bad error - very bad
  1321. X                 * It will stuff-up both ends. */
  1322. X                return(-1);
  1323. X            }
  1324. X        }
  1325. X
  1326. X    return(len);
  1327. X    }
  1328. END_OF_FILE
  1329.   if test 1718 -ne `wc -c <'enc_writ.c'`; then
  1330.     echo shar: \"'enc_writ.c'\" unpacked with wrong size!
  1331.   fi
  1332.   # end of 'enc_writ.c'
  1333. fi
  1334. echo shar: End of archive 1 \(of 5\).
  1335. cp /dev/null ark1isdone
  1336. MISSING=""
  1337. for I in 1 2 3 4 5 ; do
  1338.     if test ! -f ark${I}isdone ; then
  1339.     MISSING="${MISSING} ${I}"
  1340.     fi
  1341. done
  1342. if test "${MISSING}" = "" ; then
  1343.     echo You have unpacked all 5 archives.
  1344.     rm -f ark[1-9]isdone
  1345. else
  1346.     echo You still must unpack the following archives:
  1347.     echo "        " ${MISSING}
  1348. fi
  1349. exit 0
  1350. exit 0 # Just in case...
  1351.