/* General stuff */
COPYING		- Copying info.
FILES		- This file.
INSTALLATION	- How to make things compile.
Imakefile	- For use with kerberos.
README		- What this package is.
VERSION		- Which version this is.
makefile	- The make file.
times		- Some outputs from 'speed' on my local machines.

/* My sunOS des(1) replacement */
des.c		- des(1) source code.
des.man		- des(1) manual.

/* Testing and timing programs. */
destest.c	- Source for libdes.a test program.
speed.c		- Source for libdes.a timing program.
rpw.c		- Source for libdes.a testing password reading routines.

/* libdes.a source code */
des_crypt.man	- libdes.a manual page.
des.h		- Public libdes.a header file.
cbc_cksum.c	- des_cbc_cksum() source.
cbc_encrypt.c	- des_cbc_encrypt() source.
ecb_encrypt.c	- ecb_encrypt() source, this contains the basic DES code.
enc_read.c	- des_enc_read() source.
enc_write.c	- des_enc_write() source.
pcbc_encrypt.c	- des_pcbc_encrypt() source.
quad_cksum.c	- quad_cksum() source.
random_key.c	- des_random_key() source.
read_password.c - Source for des_read_password() plus related functions.
set_key.c	- Source for des_set_key().
string_to_key.c - Covert a string of any length into a key.
fcrypt.c	- A small, fast version of crypt(3).
des_local.h	- Internal libdes.a header file.
podd.h		- Odd parity tables - used in des_set_key().
sk.h		- Lookup tables used in des_set_key().
sp.h		- What is left of the S tables - used in ecb_encrypt().

/* The perl scripts - you can ignore these files they are only
 * included for the curious */
des.pl		- des in perl anyone? des_set_key and des_ecb_encrypt
		  both done in a perl library.
testdes.pl	- Testing program for des.pl
doIP		- Perl script used to develop IP xor/shift code.
doPC1		- Perl script used to develop PC1 xor/shift code.
doPC2		- Generates sk.h.
PC1		- Output of doPC1 should be the same as output from PC1.
PC2		- used in development of doPC2.
shifts.pl	- Perl library used by my perl scripts.

