openssl/crypto/des
Bodo Möller 458cddc104 Have CRYPTO_MDEBUG_TIME automatically set CRYPTO_MDEBUG,
and make it the default for some debugging configurations.
1999-07-19 09:25:35 +00:00
..
asm More NASM support code it still doesn't work but it doesn't work less than it 1999-07-12 18:12:43 +00:00
t
times
.cvsignore The des app. 1999-06-08 20:11:02 +00:00
cbc3_enc.c Unify DES library: ncbc_enc.c wasn't used, but its content was almost 1999-06-09 17:28:30 +00:00
cbc_cksm.c
cbc_enc.c Unify DES library: ncbc_enc.c wasn't used, but its content was almost 1999-06-09 17:28:30 +00:00
cfb64ede.c
cfb64enc.c
cfb_enc.c
COPYRIGHT
des3s.cpp
des_crypt.man
des_enc.c More DES library cleanups: remove references to srand/rand 1999-07-15 23:47:02 +00:00
des_locl.h More DES library cleanups: remove references to srand/rand 1999-07-15 23:47:02 +00:00
des_opts.c Some pre-POSIX systems don't have unistd.h (but e.g. lib.c). 1999-06-09 13:23:38 +00:00
des_ver.h Fix to compile the des app. 1999-06-08 15:35:57 +00:00
des-lib.com
des.c More DES library cleanups: remove references to srand/rand 1999-07-15 23:47:02 +00:00
des.h des_cbc_encrypt / des_ncbc_encrypt issue. 1999-06-09 18:01:49 +00:00
des.man
des.pl
DES.pm
DES.pod
DES.xs
dess.cpp
destest.c Avoid some warnings (on silly compilers). 1999-06-12 09:52:44 +00:00
doIP
doPC1
doPC2
ecb3_enc.c
ecb_enc.c Remove old libdes version number. 1999-06-09 16:26:50 +00:00
ede_cbcm_enc.c
enc_read.c
enc_writ.c More DES library cleanups: remove references to srand/rand 1999-07-15 23:47:02 +00:00
fcrypt_b.c
fcrypt.c Call our crypt implementation des_crypt(). crypt() now is a wrapper if 1999-06-08 16:35:11 +00:00
FILES
Imakefile
INSTALL
KERBEROS
makefile.bc
Makefile.lit
Makefile.PL
Makefile.ssl Have CRYPTO_MDEBUG_TIME automatically set CRYPTO_MDEBUG, 1999-07-19 09:25:35 +00:00
Makefile.uni
MODES.DES
ncbc_enc.c Unify DES library: ncbc_enc.c wasn't used, but its content was almost 1999-06-09 17:28:30 +00:00
ofb64ede.c
ofb64enc.c
ofb_enc.c
options.txt
PC1
PC2
pcbc_enc.c
podd.h
qud_cksm.c
rand_key.c
read2pwd.c
read_pwd.c More DES library cleanups: remove references to srand/rand 1999-07-15 23:47:02 +00:00
README
rpc_des.h
rpc_enc.c
rpw.c Casts. 1999-06-08 16:25:21 +00:00
set_key.c
shifts.pl
sk.h
speed.c Some pre-POSIX systems don't have unistd.h (but e.g. lib.c). 1999-06-09 13:23:38 +00:00
spr.h
str2key.c
supp.c
testdes.pl
typemap
VERSION
xcbc_enc.c

		libdes, Version 4.01 10-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@cryptsoft.com)