1*ebfedea0SLionel Sambuc/* General stuff */ 2*ebfedea0SLionel SambucCOPYRIGHT - Copyright info. 3*ebfedea0SLionel SambucMODES.DES - A description of the features of the different modes of DES. 4*ebfedea0SLionel SambucFILES - This file. 5*ebfedea0SLionel SambucINSTALL - How to make things compile. 6*ebfedea0SLionel SambucImakefile - For use with kerberos. 7*ebfedea0SLionel SambucREADME - What this package is. 8*ebfedea0SLionel SambucVERSION - Which version this is and what was changed. 9*ebfedea0SLionel SambucKERBEROS - Kerberos version 4 notes. 10*ebfedea0SLionel SambucMakefile.PL - An old makefile to build with perl5, not current. 11*ebfedea0SLionel SambucMakefile.ssl - The SSLeay makefile 12*ebfedea0SLionel SambucMakefile.uni - The normal unix makefile. 13*ebfedea0SLionel SambucGNUmakefile - The makefile for use with glibc. 14*ebfedea0SLionel Sambucmakefile.bc - A Borland C makefile 15*ebfedea0SLionel Sambuctimes - Some outputs from 'speed' on some machines. 16*ebfedea0SLionel Sambucvms.com - For use when compiling under VMS 17*ebfedea0SLionel Sambuc 18*ebfedea0SLionel Sambuc/* My SunOS des(1) replacement */ 19*ebfedea0SLionel Sambucdes.c - des(1) source code. 20*ebfedea0SLionel Sambucdes.man - des(1) manual. 21*ebfedea0SLionel Sambuc 22*ebfedea0SLionel Sambuc/* Testing and timing programs. */ 23*ebfedea0SLionel Sambucdestest.c - Source for libdes.a test program. 24*ebfedea0SLionel Sambucspeed.c - Source for libdes.a timing program. 25*ebfedea0SLionel Sambucrpw.c - Source for libdes.a testing password reading routines. 26*ebfedea0SLionel Sambuc 27*ebfedea0SLionel Sambuc/* libdes.a source code */ 28*ebfedea0SLionel Sambucdes_crypt.man - libdes.a manual page. 29*ebfedea0SLionel Sambucdes.h - Public libdes.a header file. 30*ebfedea0SLionel Sambucecb_enc.c - des_ecb_encrypt() source, this contains the basic DES code. 31*ebfedea0SLionel Sambucecb3_enc.c - des_ecb3_encrypt() source. 32*ebfedea0SLionel Sambuccbc_ckm.c - des_cbc_cksum() source. 33*ebfedea0SLionel Sambuccbc_enc.c - des_cbc_encrypt() source. 34*ebfedea0SLionel Sambucncbc_enc.c - des_cbc_encrypt() that is 'normal' in that it copies 35*ebfedea0SLionel Sambuc the new iv values back in the passed iv vector. 36*ebfedea0SLionel Sambucede_enc.c - des_ede3_cbc_encrypt() cbc mode des using triple DES. 37*ebfedea0SLionel Sambuccbc3_enc.c - des_3cbc_encrypt() source, don't use this function. 38*ebfedea0SLionel Sambuccfb_enc.c - des_cfb_encrypt() source. 39*ebfedea0SLionel Sambuccfb64enc.c - des_cfb64_encrypt() cfb in 64 bit mode but setup to be 40*ebfedea0SLionel Sambuc used as a stream cipher. 41*ebfedea0SLionel Sambuccfb64ede.c - des_ede3_cfb64_encrypt() cfb in 64 bit mode but setup to be 42*ebfedea0SLionel Sambuc used as a stream cipher and using triple DES. 43*ebfedea0SLionel Sambucofb_enc.c - des_cfb_encrypt() source. 44*ebfedea0SLionel Sambucofb64_enc.c - des_ofb_encrypt() ofb in 64 bit mode but setup to be 45*ebfedea0SLionel Sambuc used as a stream cipher. 46*ebfedea0SLionel Sambucofb64ede.c - des_ede3_ofb64_encrypt() ofb in 64 bit mode but setup to be 47*ebfedea0SLionel Sambuc used as a stream cipher and using triple DES. 48*ebfedea0SLionel Sambucenc_read.c - des_enc_read() source. 49*ebfedea0SLionel Sambucenc_writ.c - des_enc_write() source. 50*ebfedea0SLionel Sambucpcbc_enc.c - des_pcbc_encrypt() source. 51*ebfedea0SLionel Sambucqud_cksm.c - quad_cksum() source. 52*ebfedea0SLionel Sambucrand_key.c - des_random_key() source. 53*ebfedea0SLionel Sambucread_pwd.c - Source for des_read_password() plus related functions. 54*ebfedea0SLionel Sambucset_key.c - Source for des_set_key(). 55*ebfedea0SLionel Sambucstr2key.c - Covert a string of any length into a key. 56*ebfedea0SLionel Sambucfcrypt.c - A small, fast version of crypt(3). 57*ebfedea0SLionel Sambucdes_locl.h - Internal libdes.a header file. 58*ebfedea0SLionel Sambucpodd.h - Odd parity tables - used in des_set_key(). 59*ebfedea0SLionel Sambucsk.h - Lookup tables used in des_set_key(). 60*ebfedea0SLionel Sambucspr.h - What is left of the S tables - used in ecb_encrypt(). 61*ebfedea0SLionel Sambucdes_ver.h - header file for the external definition of the 62*ebfedea0SLionel Sambuc version string. 63*ebfedea0SLionel Sambucdes.doc - SSLeay documentation for the library. 64*ebfedea0SLionel Sambuc 65*ebfedea0SLionel Sambuc/* The perl scripts - you can ignore these files they are only 66*ebfedea0SLionel Sambuc * included for the curious */ 67*ebfedea0SLionel Sambucdes.pl - des in perl anyone? des_set_key and des_ecb_encrypt 68*ebfedea0SLionel Sambuc both done in a perl library. 69*ebfedea0SLionel Sambuctestdes.pl - Testing program for des.pl 70*ebfedea0SLionel SambucdoIP - Perl script used to develop IP xor/shift code. 71*ebfedea0SLionel SambucdoPC1 - Perl script used to develop PC1 xor/shift code. 72*ebfedea0SLionel SambucdoPC2 - Generates sk.h. 73*ebfedea0SLionel SambucPC1 - Output of doPC1 should be the same as output from PC1. 74*ebfedea0SLionel SambucPC2 - used in development of doPC2. 75*ebfedea0SLionel Sambucshifts.pl - Perl library used by my perl scripts. 76*ebfedea0SLionel Sambuc 77*ebfedea0SLionel Sambuc/* I started making a perl5 dynamic library for libdes 78*ebfedea0SLionel Sambuc * but did not fully finish, these files are part of that effort. */ 79*ebfedea0SLionel SambucDES.pm 80*ebfedea0SLionel SambucDES.pod 81*ebfedea0SLionel SambucDES.xs 82*ebfedea0SLionel Sambuct 83*ebfedea0SLionel Sambuctypemap 84*ebfedea0SLionel Sambuc 85*ebfedea0SLionel Sambuc/* The following are for use with sun RPC implementaions. */ 86*ebfedea0SLionel Sambucrpc_des.h 87*ebfedea0SLionel Sambucrpc_enc.c 88*ebfedea0SLionel Sambuc 89*ebfedea0SLionel Sambuc/* The following are contibuted by Mark Murray <mark@grondar.za>. They 90*ebfedea0SLionel Sambuc * are not normally built into libdes due to machine specific routines 91*ebfedea0SLionel Sambuc * contained in them. They are for use in the most recent incarnation of 92*ebfedea0SLionel Sambuc * export kerberos v 4 (eBones). */ 93*ebfedea0SLionel Sambucsupp.c 94*ebfedea0SLionel Sambucnew_rkey.c 95*ebfedea0SLionel Sambuc 96*ebfedea0SLionel Sambuc 97