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