1*0Sstevel@tonic-gate/* General stuff */ 2*0Sstevel@tonic-gateCOPYRIGHT - Copyright info. 3*0Sstevel@tonic-gateMODES.DES - A description of the features of the different modes of DES. 4*0Sstevel@tonic-gateFILES - This file. 5*0Sstevel@tonic-gateINSTALL - How to make things compile. 6*0Sstevel@tonic-gateImakefile - For use with kerberos. 7*0Sstevel@tonic-gateREADME - What this package is. 8*0Sstevel@tonic-gateVERSION - Which version this is and what was changed. 9*0Sstevel@tonic-gateKERBEROS - Kerberos version 4 notes. 10*0Sstevel@tonic-gateMakefile.PL - An old makefile to build with perl5, not current. 11*0Sstevel@tonic-gateMakefile.ssl - The SSLeay makefile 12*0Sstevel@tonic-gateMakefile.uni - The normal unix makefile. 13*0Sstevel@tonic-gateGNUmakefile - The makefile for use with glibc. 14*0Sstevel@tonic-gatemakefile.bc - A Borland C makefile 15*0Sstevel@tonic-gatetimes - Some outputs from 'speed' on some machines. 16*0Sstevel@tonic-gatevms.com - For use when compiling under VMS 17*0Sstevel@tonic-gate 18*0Sstevel@tonic-gate/* My SunOS des(1) replacement */ 19*0Sstevel@tonic-gatedes.c - des(1) source code. 20*0Sstevel@tonic-gatedes.man - des(1) manual. 21*0Sstevel@tonic-gate 22*0Sstevel@tonic-gate/* Testing and timing programs. */ 23*0Sstevel@tonic-gatedestest.c - Source for libdes.a test program. 24*0Sstevel@tonic-gatespeed.c - Source for libdes.a timing program. 25*0Sstevel@tonic-gaterpw.c - Source for libdes.a testing password reading routines. 26*0Sstevel@tonic-gate 27*0Sstevel@tonic-gate/* libdes.a source code */ 28*0Sstevel@tonic-gatedes_crypt.man - libdes.a manual page. 29*0Sstevel@tonic-gatedes.h - Public libdes.a header file. 30*0Sstevel@tonic-gateecb_enc.c - des_ecb_encrypt() source, this contains the basic DES code. 31*0Sstevel@tonic-gateecb3_enc.c - des_ecb3_encrypt() source. 32*0Sstevel@tonic-gatecbc_ckm.c - des_cbc_cksum() source. 33*0Sstevel@tonic-gatecbc_enc.c - des_cbc_encrypt() source. 34*0Sstevel@tonic-gatencbc_enc.c - des_cbc_encrypt() that is 'normal' in that it copies 35*0Sstevel@tonic-gate the new iv values back in the passed iv vector. 36*0Sstevel@tonic-gateede_enc.c - des_ede3_cbc_encrypt() cbc mode des using triple DES. 37*0Sstevel@tonic-gatecbc3_enc.c - des_3cbc_encrypt() source, don't use this function. 38*0Sstevel@tonic-gatecfb_enc.c - des_cfb_encrypt() source. 39*0Sstevel@tonic-gatecfb64enc.c - des_cfb64_encrypt() cfb in 64 bit mode but setup to be 40*0Sstevel@tonic-gate used as a stream cipher. 41*0Sstevel@tonic-gatecfb64ede.c - des_ede3_cfb64_encrypt() cfb in 64 bit mode but setup to be 42*0Sstevel@tonic-gate used as a stream cipher and using triple DES. 43*0Sstevel@tonic-gateofb_enc.c - des_cfb_encrypt() source. 44*0Sstevel@tonic-gateofb64_enc.c - des_ofb_encrypt() ofb in 64 bit mode but setup to be 45*0Sstevel@tonic-gate used as a stream cipher. 46*0Sstevel@tonic-gateofb64ede.c - des_ede3_ofb64_encrypt() ofb in 64 bit mode but setup to be 47*0Sstevel@tonic-gate used as a stream cipher and using triple DES. 48*0Sstevel@tonic-gateenc_read.c - des_enc_read() source. 49*0Sstevel@tonic-gateenc_writ.c - des_enc_write() source. 50*0Sstevel@tonic-gatepcbc_enc.c - des_pcbc_encrypt() source. 51*0Sstevel@tonic-gatequd_cksm.c - quad_cksum() source. 52*0Sstevel@tonic-gaterand_key.c - des_random_key() source. 53*0Sstevel@tonic-gateread_pwd.c - Source for des_read_password() plus related functions. 54*0Sstevel@tonic-gateset_key.c - Source for des_set_key(). 55*0Sstevel@tonic-gatestr2key.c - Covert a string of any length into a key. 56*0Sstevel@tonic-gatefcrypt.c - A small, fast version of crypt(3). 57*0Sstevel@tonic-gatedes_locl.h - Internal libdes.a header file. 58*0Sstevel@tonic-gatepodd.h - Odd parity tables - used in des_set_key(). 59*0Sstevel@tonic-gatesk.h - Lookup tables used in des_set_key(). 60*0Sstevel@tonic-gatespr.h - What is left of the S tables - used in ecb_encrypt(). 61*0Sstevel@tonic-gatedes_ver.h - header file for the external definition of the 62*0Sstevel@tonic-gate version string. 63*0Sstevel@tonic-gatedes.doc - SSLeay documentation for the library. 64*0Sstevel@tonic-gate 65*0Sstevel@tonic-gate/* The perl scripts - you can ignore these files they are only 66*0Sstevel@tonic-gate * included for the curious */ 67*0Sstevel@tonic-gatedes.pl - des in perl anyone? des_set_key and des_ecb_encrypt 68*0Sstevel@tonic-gate both done in a perl library. 69*0Sstevel@tonic-gatetestdes.pl - Testing program for des.pl 70*0Sstevel@tonic-gatedoIP - Perl script used to develop IP xor/shift code. 71*0Sstevel@tonic-gatedoPC1 - Perl script used to develop PC1 xor/shift code. 72*0Sstevel@tonic-gatedoPC2 - Generates sk.h. 73*0Sstevel@tonic-gatePC1 - Output of doPC1 should be the same as output from PC1. 74*0Sstevel@tonic-gatePC2 - used in development of doPC2. 75*0Sstevel@tonic-gateshifts.pl - Perl library used by my perl scripts. 76*0Sstevel@tonic-gate 77*0Sstevel@tonic-gate/* I started making a perl5 dynamic library for libdes 78*0Sstevel@tonic-gate * but did not fully finish, these files are part of that effort. */ 79*0Sstevel@tonic-gateDES.pm 80*0Sstevel@tonic-gateDES.pod 81*0Sstevel@tonic-gateDES.xs 82*0Sstevel@tonic-gatet 83*0Sstevel@tonic-gatetypemap 84*0Sstevel@tonic-gate 85*0Sstevel@tonic-gate/* The following are for use with sun RPC implementaions. */ 86*0Sstevel@tonic-gaterpc_des.h 87*0Sstevel@tonic-gaterpc_enc.c 88*0Sstevel@tonic-gate 89*0Sstevel@tonic-gate/* The following are contibuted by Mark Murray <mark@grondar.za>. They 90*0Sstevel@tonic-gate * are not normally built into libdes due to machine specific routines 91*0Sstevel@tonic-gate * contained in them. They are for use in the most recent incarnation of 92*0Sstevel@tonic-gate * export kerberos v 4 (eBones). */ 93*0Sstevel@tonic-gatesupp.c 94*0Sstevel@tonic-gatenew_rkey.c 95*0Sstevel@tonic-gate 96*0Sstevel@tonic-gate 97