NetBSD/crypto/dist/krb4/lib/des
wiz 1fd7eeefcd "than" instead of "then". 2001-11-21 19:14:19 +00:00
..
asm
t
COPYRIGHT
ChangeLog import krb4-1.1 2001-09-17 12:09:38 +00:00
DES.pm
DES.pod
DES.xs
FILES
INSTALL
Imakefile
KERBEROS
MODES.DES
Makefile.PL
Makefile.am import krb4-1.1 2001-09-17 12:09:38 +00:00
Makefile.in import krb4-1.1 2001-09-17 12:09:38 +00:00
Makefile.ssl
Makefile.uni
PC1
PC2
README
VERSION
cbc3_enc.c
cbc_cksm.c
cbc_enc.c
cfb64ede.c
cfb64enc.c
cfb_enc.c
des.1 import krb4-1.1 2001-09-17 12:09:38 +00:00
des.c
des.def
des.doc
des.dsp
des.h ifdef out redundant declaration of crypt(3); we don't need it. 2001-02-04 18:01:48 +00:00
des.mak
des.man
des.org
des.pl
des_crypt.3 import krb4-1.1 2001-09-17 12:09:38 +00:00
des_crypt.man
des_enc.c
des_locl.h
des_locl.org
des_opts.c
des_ver.h
destest.c
dllmain.c
doIP
doPC1
doPC2
ecb3_enc.c
ecb_enc.c
ede_enc.c
enc_read.c
enc_writ.c
fcrypt.c "than" instead of "then". 2001-11-21 19:14:19 +00:00
hash.h
key_par.c
makefile.bc
md4.c import krb4-1.1 2001-09-17 12:09:38 +00:00
md4.h import krb4-1.1 2001-09-17 12:09:38 +00:00
md5.c import krb4-1.1 2001-09-17 12:09:38 +00:00
md5.h import krb4-1.1 2001-09-17 12:09:38 +00:00
md5crypt_test.c import krb4-1.1 2001-09-17 12:09:38 +00:00
mdtest.c import krb4-1.1 2001-09-17 12:09:38 +00:00
ncbc_enc.c
ofb64ede.c
ofb64enc.c
ofb_enc.c
passwd_dialog.aps
passwd_dialog.clw
passwd_dialog.rc
passwd_dialog.res
passwd_dlg.c
passwd_dlg.h
pcbc_enc.c
podd.h
qud_cksm.c
rand_key.c
rc4.h
rc4_enc.c
rc4_skey.c
rc4test.c
read_pwd.c
resource.h
rnd_keys.c import krb4-1.1 2001-09-17 12:09:38 +00:00
rpc_des.h
rpc_enc.c
rpw.c import krb4-1.1 2001-09-17 12:09:38 +00:00
set_key.c import krb4-1.1 2001-09-17 12:09:38 +00:00
sha.c import krb4-1.1 2001-09-17 12:09:38 +00:00
sha.h import krb4-1.1 2001-09-17 12:09:38 +00:00
shifts.pl
sk.h
speed.c import krb4-1.1 2001-09-17 12:09:38 +00:00
spr.h
str2key.c import krb4-1.1 2001-09-17 12:09:38 +00:00
supp.c
testdes.pl
times
typemap
version.h
vms.com
xcbc_enc.c

README

		libdes, Version 4.01 13-Jan-97

		Copyright (c) 1997, Eric Young
			  All rights reserved.

    This program is free software; you can redistribute it and/or modify
    it under the terms specified in COPYRIGHT.
    
--
The primary ftp site for this library is
ftp://ftp.psy.uq.oz.au/pub/Crypto/DES/libdes-x.xx.tar.gz
libdes is now also shipped with SSLeay.  Primary ftp site of
ftp://ftp.psy.uq.oz.au/pub/Crypto/SSL/SSLeay-x.x.x.tar.gz

The best way to build this library is to build it as part of SSLeay.

This kit builds a DES encryption library and a DES encryption program.
It supports ecb, cbc, ofb, cfb, triple ecb, triple cbc, triple ofb,
triple cfb, desx, and MIT's pcbc encryption modes and also has a fast
implementation of crypt(3).
It contains support routines to read keys from a terminal,
generate a random key, generate a key from an arbitrary length string,
read/write encrypted data from/to a file descriptor.

The implementation was written so as to conform with the manual entry
for the des_crypt(3) library routines from MIT's project Athena.

destest should be run after compilation to test the des routines.
rpw should be run after compilation to test the read password routines.
The des program is a replacement for the sun des command.  I believe it
conforms to the sun version.

The Imakefile is setup for use in the kerberos distribution.

These routines are best compiled with gcc or any other good
optimising compiler.
Just turn you optimiser up to the highest settings and run destest
after the build to make sure everything works.

I believe these routines are close to the fastest and most portable DES
routines that use small lookup tables (4.5k) that are publicly available.
The fcrypt routine is faster than ufc's fcrypt (when compiling with
gcc2 -O2) on the sparc 2 (1410 vs 1270) but is not so good on other machines
(on a sun3/260 168 vs 336).  It is a function of CPU on chip cache size.
[ 10-Jan-97 and a function of an incorrect speed testing program in
  ufc which gave much better test figures that reality ].

It is worth noting that on sparc and Alpha CPUs, performance of the DES
library can vary by upto %10 due to the positioning of files after application
linkage.

Eric Young (eay@mincom.oz.au)