The list of files you should have received with this package:

LICENSE		BSD-style License file
MANIFEST	This file
DESIGN		A textfile on the design of stegtunnel
THANKS		Contributors of ideas to stegtunnel

crypto.c	Contains code that is primarily responsible with hashing,
		and also dealing with the hash table interface (which isn't
		really crypto, but...)
hashtab.c	Bob Jenkins' hash table implementation.	
isaac.c		Bob Jenkins' ISAAC, a pseudorandom number generator.
lookupa.c	Bob Jenkins' lookup functions, used by hashtab
md5.c		RSA Data Security, Inc. MD5 Message-Digest Algorithm
recycle.c	Bob Jenkins' memory allocation functions
stegclient.c	Contains main() for stegclient, along with the inbound()
		and outbound() functions.
stegserver.c	Contains main() for stegserver, along with the inbound()
                and outbound() functions.

crypto.h	Function and constant definitions for crypto.c
hashtab.h	Function and constant definitions for hashtab.c
lookupa.h	Function and constant definitions for lookupa.c
md5.h		Function and constant definitions for md5.c
rand.h		Random function definition for use with isaac.c
recycle.h	Function and constant definitions for recycle.c
standard.h	Bob Jenkins' standard definitions and types
stegtunnel.h	Definitions of data structures used by both stegclient
		and stegserver

stegclient.1 	Man page for stegclient
stegserver.1	Man page for stegserver

configure	The configure script, by autoconf.
configure.ac  	The autoconf file configure was generated from
Makefile.am  	The automake file Makefile.in was generated from
Makefile.in  	What configure will generate the Makefile from
