NameDateSize

..20-Dec-201698

asm/H20-Dec-20168

cbc3_enc.cH A D08-Mar-20164.7 KiB

cbc_cksm.cH A D08-Mar-20164.4 KiB

cbc_enc.cH A D08-Mar-20163.2 KiB

cfb64ede.cH A D08-Mar-20168.6 KiB

cfb64enc.cH A D08-Mar-20164.8 KiB

cfb_enc.cH A D08-Mar-20167.2 KiB

COPYRIGHTH A D08-Mar-20152.6 KiB

des.cH A D08-Mar-201626.6 KiB

des.hH A D08-Mar-201611.5 KiB

DES.pmH A D08-Mar-2015423

des.podH A D08-Mar-20154.7 KiB

DES.xsH A D08-Mar-20154.2 KiB

des3s.cppH A D08-Mar-20151.4 KiB

des_enc.cH A D08-Mar-201612.7 KiB

des_lib.cH A D08-Mar-20164.1 KiB

des_locl.hH A D08-Mar-201615.9 KiB

des_old.cH A D08-Mar-201613 KiB

des_old.hH A D08-Mar-201621 KiB

des_old2.cH A D08-Mar-20163.5 KiB

des_opts.cH A D08-Mar-201617 KiB

des_ver.hH A D08-Mar-20163.6 KiB

dess.cppH A D08-Mar-20151.3 KiB

destest.cH A D08-Mar-201634.2 KiB

ecb3_enc.cH A D08-Mar-20163.7 KiB

ecb_enc.cH A D08-Mar-20163.6 KiB

ede_cbcm_enc.cH A D08-Mar-20165.9 KiB

enc_read.cH A D08-Mar-20168 KiB

enc_writ.cH A D08-Mar-20166.1 KiB

fcrypt.cH A D08-Mar-20164.8 KiB

fcrypt_b.cH A D08-Mar-20165.3 KiB

FILES0H A D08-Mar-20153.7 KiB

ImakefileH A D08-Mar-20151 KiB

INSTALLH A D08-Mar-20152.7 KiB

KERBEROSH A D08-Mar-20151.5 KiB

MakefileH A D08-Mar-201515 KiB

makefile.bcH A D08-Mar-20151.1 KiB

ncbc_enc.cH A D08-Mar-20165.7 KiB

ofb64ede.cH A D08-Mar-20164.8 KiB

ofb64enc.cH A D08-Mar-20164.3 KiB

ofb_enc.cH A D08-Mar-20165.2 KiB

options.txtH A D08-Mar-20152.2 KiB

pcbc_enc.cH A D08-Mar-20164.7 KiB

qud_cksm.cH A D08-Mar-20165.4 KiB

rand_key.cH A D08-Mar-20162.9 KiB

read2pwd.cH A D08-Mar-20166.5 KiB

read_pwd.cH A D08-Mar-201613.6 KiB

READMEH A D08-Mar-20152.2 KiB

rpc_des.hH A D08-Mar-20165.6 KiB

rpc_enc.cH A D08-Mar-20164.3 KiB

rpw.cH A D08-Mar-20164 KiB

set_key.cH A D08-Mar-201617.9 KiB

speed.cH A D08-Mar-20169.6 KiB

spr.hH A D08-Mar-201610.9 KiB

str2key.cH A D08-Mar-20166.1 KiB

times/H20-Dec-201610

typemapH A D08-Mar-2015616

VERSIONH A D08-Mar-201515.8 KiB

xcbc_enc.cH A D08-Mar-20168.3 KiB

README

1
2		libdes, Version 4.01 10-Jan-97
3
4		Copyright (c) 1997, Eric Young
5			  All rights reserved.
6
7    This program is free software; you can redistribute it and/or modify
8    it under the terms specified in COPYRIGHT.
9    
10--
11The primary ftp site for this library is
12ftp://ftp.psy.uq.oz.au/pub/Crypto/DES/libdes-x.xx.tar.gz
13libdes is now also shipped with SSLeay.  Primary ftp site of
14ftp://ftp.psy.uq.oz.au/pub/Crypto/SSL/SSLeay-x.x.x.tar.gz
15
16The best way to build this library is to build it as part of SSLeay.
17
18This kit builds a DES encryption library and a DES encryption program.
19It supports ecb, cbc, ofb, cfb, triple ecb, triple cbc, triple ofb,
20triple cfb, desx, and MIT's pcbc encryption modes and also has a fast
21implementation of crypt(3).
22It contains support routines to read keys from a terminal,
23generate a random key, generate a key from an arbitrary length string,
24read/write encrypted data from/to a file descriptor.
25
26The implementation was written so as to conform with the manual entry
27for the des_crypt(3) library routines from MIT's project Athena.
28
29destest should be run after compilation to test the des routines.
30rpw should be run after compilation to test the read password routines.
31The des program is a replacement for the sun des command.  I believe it
32conforms to the sun version.
33
34The Imakefile is setup for use in the kerberos distribution.
35
36These routines are best compiled with gcc or any other good
37optimising compiler.
38Just turn you optimiser up to the highest settings and run destest
39after the build to make sure everything works.
40
41I believe these routines are close to the fastest and most portable DES
42routines that use small lookup tables (4.5k) that are publicly available.
43The fcrypt routine is faster than ufc's fcrypt (when compiling with
44gcc2 -O2) on the sparc 2 (1410 vs 1270) but is not so good on other machines
45(on a sun3/260 168 vs 336).  It is a function of CPU on chip cache size.
46[ 10-Jan-97 and a function of an incorrect speed testing program in
47  ufc which gave much better test figures that reality ].
48
49It is worth noting that on sparc and Alpha CPUs, performance of the DES
50library can vary by upto %10 due to the positioning of files after application
51linkage.
52
53Eric Young (eay@cryptsoft.com)
54
55