aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/des/des_old.c
Commit message (Collapse)AuthorAgeFilesLines
* des_old.h doesn't really need to include des.h, so don't. That willRichard Levitte2001-11-061-0/+1
| | | | | avoid clashes with other code that have their own DES_ functions but really only use OpenSSL's old des_ functions.
* Fix warning.Ben Laurie2001-10-251-0/+1
|
* filenames are des_old.[ch], not des.comp*Bodo Möller2001-10-251-1/+1
|
* Remove DES_random_seed() but retain des_random_seed() for now. ChangeRichard Levitte2001-10-251-1/+1
| | | | the docs to reflect this change and correct libeay.num.
* Have the removal warnings very high up in the source.Richard Levitte2001-10-251-0/+16
|
* Due to an increasing number of clashes between modern OpenSSL andRichard Levitte2001-10-241-0/+245
libdes (which is still used out there) or other des implementations, the OpenSSL DES functions are renamed to begin with DES_ instead of des_. Compatibility routines are provided and declared by including openssl/des_old.h. Those declarations are the same as were in des.h when the OpenSSL project started, which is exactly how libdes looked at that time, and hopefully still looks today. The compatibility functions will be removed in some future release, at the latest in version 1.0.