openssl/crypto/des
Richard Levitte 4e20a4e688 'ranlib' doesn't always run on some systems. That's actually
acceptable, since all that happens if it fails is a library with
an index, which makes linking slower, but still working correctly.
2000-09-25 08:53:15 +00:00
..
asm Remove Win32 assembler files. They are always rebuilt (with some 2000-03-13 08:04:20 +00:00
t
times
.cvsignore
cbc3_enc.c
cbc_cksm.c
cbc_enc.c
cfb64ede.c
cfb64enc.c
cfb_enc.c
COPYRIGHT
des3s.cpp
des_enc.c
des_locl.h _lrotl and _lrotr are defined in MSVC but nowhere else that we know 2000-04-01 10:39:33 +00:00
des_opts.c
des_ver.h
des-lib.com
des.c There have been a number of complaints from a number of sources that names 2000-06-01 22:19:21 +00:00
des.h #include <stdio.h> not needed. 2000-05-31 22:25:44 +00:00
DES.pm
des.pod change manpages to pod. Contents are not up to date! 2000-03-18 17:55:09 +00:00
DES.xs
dess.cpp
destest.c Fix a memory leak in PKCS12_parse. 2000-03-22 13:50:23 +00:00
ecb3_enc.c
ecb_enc.c
ede_cbcm_enc.c
enc_read.c There have been a number of complaints from a number of sources that names 2000-06-01 22:19:21 +00:00
enc_writ.c There have been a number of complaints from a number of sources that names 2000-06-01 22:19:21 +00:00
fcrypt_b.c
fcrypt.c cleanup. 2000-03-19 02:10:17 +00:00
FILES
Imakefile
INSTALL
KERBEROS
makefile.bc
Makefile.ssl 'ranlib' doesn't always run on some systems. That's actually 2000-09-25 08:53:15 +00:00
ncbc_enc.c Insert a comment: This is one of the few files in this directory 2000-03-14 14:33:11 +00:00
ofb64ede.c
ofb64enc.c
ofb_enc.c
options.txt
pcbc_enc.c
qud_cksm.c On Unicos, shorts are 8 bytes, so instead, use a structure with 2 32-bit ints, just as in destest.c 2000-08-03 21:58:56 +00:00
rand_key.c cleanup. 2000-03-19 02:10:17 +00:00
read2pwd.c
read_pwd.c Portability patch for HP MPE/iX. Submitted by Mark Bixby <mark_bixby@hp.com> 2000-09-21 05:42:01 +00:00
README
rpc_des.h
rpc_enc.c
rpw.c
set_key.c Integrate podd.h sk.h into set_key.c 2000-03-19 12:13:44 +00:00
speed.c
spr.h
str2key.c
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)