Modified source engine (2017) developed by valve and leaked in 2020. Not for commercial purporses
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
JusicP 940d664def Add thirdparty libs 4 years ago
..
asm Add thirdparty libs 4 years ago
t Add thirdparty libs 4 years ago
times Add thirdparty libs 4 years ago
COPYRIGHT Add thirdparty libs 4 years ago
DES.pm Add thirdparty libs 4 years ago
DES.xs Add thirdparty libs 4 years ago
FILES0 Add thirdparty libs 4 years ago
INSTALL Add thirdparty libs 4 years ago
Imakefile Add thirdparty libs 4 years ago
KERBEROS Add thirdparty libs 4 years ago
Makefile Add thirdparty libs 4 years ago
README Add thirdparty libs 4 years ago
VERSION Add thirdparty libs 4 years ago
cbc3_enc.c Add thirdparty libs 4 years ago
cbc_cksm.c Add thirdparty libs 4 years ago
cbc_cksm.o Add thirdparty libs 4 years ago
cbc_enc.c Add thirdparty libs 4 years ago
cbc_enc.o Add thirdparty libs 4 years ago
cfb64ede.c Add thirdparty libs 4 years ago
cfb64ede.o Add thirdparty libs 4 years ago
cfb64enc.c Add thirdparty libs 4 years ago
cfb64enc.o Add thirdparty libs 4 years ago
cfb_enc.c Add thirdparty libs 4 years ago
cfb_enc.o Add thirdparty libs 4 years ago
des-lib.com Add thirdparty libs 4 years ago
des.c Add thirdparty libs 4 years ago
des.h Add thirdparty libs 4 years ago
des.pod Add thirdparty libs 4 years ago
des3s.cpp Add thirdparty libs 4 years ago
des_enc.c Add thirdparty libs 4 years ago
des_enc.o Add thirdparty libs 4 years ago
des_locl.h Add thirdparty libs 4 years ago
des_old.c Add thirdparty libs 4 years ago
des_old.h Add thirdparty libs 4 years ago
des_old.o Add thirdparty libs 4 years ago
des_old2.c Add thirdparty libs 4 years ago
des_old2.o Add thirdparty libs 4 years ago
des_opts.c Add thirdparty libs 4 years ago
des_ver.h Add thirdparty libs 4 years ago
dess.cpp Add thirdparty libs 4 years ago
destest.c Add thirdparty libs 4 years ago
ecb3_enc.c Add thirdparty libs 4 years ago
ecb3_enc.o Add thirdparty libs 4 years ago
ecb_enc.c Add thirdparty libs 4 years ago
ecb_enc.o Add thirdparty libs 4 years ago
ede_cbcm_enc.c Add thirdparty libs 4 years ago
ede_cbcm_enc.o Add thirdparty libs 4 years ago
enc_read.c Add thirdparty libs 4 years ago
enc_read.o Add thirdparty libs 4 years ago
enc_writ.c Add thirdparty libs 4 years ago
enc_writ.o Add thirdparty libs 4 years ago
fcrypt.c Add thirdparty libs 4 years ago
fcrypt.o Add thirdparty libs 4 years ago
fcrypt_b.c Add thirdparty libs 4 years ago
fcrypt_b.o Add thirdparty libs 4 years ago
lib Add thirdparty libs 4 years ago
makefile.bc Add thirdparty libs 4 years ago
ncbc_enc.c Add thirdparty libs 4 years ago
ofb64ede.c Add thirdparty libs 4 years ago
ofb64ede.o Add thirdparty libs 4 years ago
ofb64enc.c Add thirdparty libs 4 years ago
ofb64enc.o Add thirdparty libs 4 years ago
ofb_enc.c Add thirdparty libs 4 years ago
ofb_enc.o Add thirdparty libs 4 years ago
options.txt Add thirdparty libs 4 years ago
pcbc_enc.c Add thirdparty libs 4 years ago
pcbc_enc.o Add thirdparty libs 4 years ago
qud_cksm.c Add thirdparty libs 4 years ago
qud_cksm.o Add thirdparty libs 4 years ago
rand_key.c Add thirdparty libs 4 years ago
rand_key.o Add thirdparty libs 4 years ago
read2pwd.c Add thirdparty libs 4 years ago
read2pwd.o Add thirdparty libs 4 years ago
read_pwd.c Add thirdparty libs 4 years ago
rpc_des.h Add thirdparty libs 4 years ago
rpc_enc.c Add thirdparty libs 4 years ago
rpc_enc.o Add thirdparty libs 4 years ago
rpw.c Add thirdparty libs 4 years ago
set_key.c Add thirdparty libs 4 years ago
set_key.o Add thirdparty libs 4 years ago
speed.c Add thirdparty libs 4 years ago
spr.h Add thirdparty libs 4 years ago
str2key.c Add thirdparty libs 4 years ago
str2key.o Add thirdparty libs 4 years ago
typemap Add thirdparty libs 4 years ago
xcbc_enc.c Add thirdparty libs 4 years ago
xcbc_enc.o Add thirdparty libs 4 years ago

README


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)