1/* General stuff */
2COPYRIGHT	- Copyright info.
3MODES.DES	- A description of the features of the different modes of DES.
4FILES		- This file.
5INSTALL		- How to make things compile.
6Imakefile	- For use with kerberos.
7README		- What this package is.
8VERSION		- Which version this is and what was changed.
9KERBEROS	- Kerberos version 4 notes.
10Makefile.PL	- An old makefile to build with perl5, not current.
11Makefile.ssl	- The SSLeay makefile
12Makefile.uni	- The normal unix makefile.
13GNUmakefile	- The makefile for use with glibc.
14makefile.bc	- A Borland C makefile
15times		- Some outputs from 'speed' on some machines.
16vms.com		- For use when compiling under VMS
17
18/* My SunOS des(1) replacement */
19des.c		- des(1) source code.
20des.man		- des(1) manual.
21
22/* Testing and timing programs. */
23destest.c	- Source for libdes.a test program.
24speed.c		- Source for libdes.a timing program.
25rpw.c		- Source for libdes.a testing password reading routines.
26
27/* libdes.a source code */
28des_crypt.man	- libdes.a manual page.
29des.h		- Public libdes.a header file.
30ecb_enc.c	- des_ecb_encrypt() source, this contains the basic DES code.
31ecb3_enc.c	- des_ecb3_encrypt() source.
32cbc_ckm.c	- des_cbc_cksum() source.
33cbc_enc.c	- des_cbc_encrypt() source.
34ncbc_enc.c	- des_cbc_encrypt() that is 'normal' in that it copies
35		  the new iv values back in the passed iv vector.
36ede_enc.c	- des_ede3_cbc_encrypt() cbc mode des using triple DES.
37cbc3_enc.c	- des_3cbc_encrypt() source, don't use this function.
38cfb_enc.c	- des_cfb_encrypt() source.
39cfb64enc.c	- des_cfb64_encrypt() cfb in 64 bit mode but setup to be
40		  used as a stream cipher.
41cfb64ede.c	- des_ede3_cfb64_encrypt() cfb in 64 bit mode but setup to be
42		  used as a stream cipher and using triple DES.
43ofb_enc.c	- des_cfb_encrypt() source.
44ofb64_enc.c	- des_ofb_encrypt() ofb in 64 bit mode but setup to be
45		  used as a stream cipher.
46ofb64ede.c	- des_ede3_ofb64_encrypt() ofb in 64 bit mode but setup to be
47		  used as a stream cipher and using triple DES.
48enc_read.c	- des_enc_read() source.
49enc_writ.c	- des_enc_write() source.
50pcbc_enc.c	- des_pcbc_encrypt() source.
51qud_cksm.c	- quad_cksum() source.
52rand_key.c	- des_random_key() source.
53read_pwd.c	- Source for des_read_password() plus related functions.
54set_key.c	- Source for des_set_key().
55str2key.c	- Covert a string of any length into a key.
56fcrypt.c	- A small, fast version of crypt(3).
57des_locl.h	- Internal libdes.a header file.
58podd.h		- Odd parity tables - used in des_set_key().
59sk.h		- Lookup tables used in des_set_key().
60spr.h		- What is left of the S tables - used in ecb_encrypt().
61des_ver.h	- header file for the external definition of the
62		  version string.
63des.doc		- SSLeay documentation for the library.
64
65/* The perl scripts - you can ignore these files they are only
66 * included for the curious */
67des.pl		- des in perl anyone? des_set_key and des_ecb_encrypt
68		  both done in a perl library.
69testdes.pl	- Testing program for des.pl
70doIP		- Perl script used to develop IP xor/shift code.
71doPC1		- Perl script used to develop PC1 xor/shift code.
72doPC2		- Generates sk.h.
73PC1		- Output of doPC1 should be the same as output from PC1.
74PC2		- used in development of doPC2.
75shifts.pl	- Perl library used by my perl scripts.
76
77/* I started making a perl5 dynamic library for libdes
78 * but did not fully finish, these files are part of that effort. */
79DES.pm
80DES.pod
81DES.xs
82t
83typemap
84
85/* The following are for use with sun RPC implementaions. */
86rpc_des.h
87rpc_enc.c
88
89/* The following are contibuted by Mark Murray <mark@grondar.za>.  They
90 * are not normally built into libdes due to machine specific routines
91 * contained in them.  They are for use in the most recent incarnation of
92 * export kerberos v 4 (eBones). */
93supp.c
94new_rkey.c
95
96
97