summaryrefslogtreecommitdiffstats
path: root/crypto/des (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Change type of various DES function arguments from des_cblockBodo Möller1999-05-1626-201/+217
| | | | | | | | | | | | | | (meaning pointer to char) to des_cblock * (meaning pointer to array with 8 char elements), which allows the compiler to do more typechecking. (The changed argument types were of type des_cblock * back in SSLeay, and a lot of ugly casts were used then to turn them into pointers to elements; but it can be done without those casts.) Introduce new type const_des_cblock -- before, the pointers rather than the elements pointed to were declared const, and for some reason gcc did not complain about this (but some other compilers did).
* Use OPENSSL_GLOBAL, OPENSSL_EXTERN instead of GLOBAL and EXTERN.Bodo Möller1999-05-158-10/+10
|
* Update dependencies.Bodo Möller1999-05-151-29/+29
|
* Use e_os2.h, not e_os.h in exported header file des.h.Bodo Möller1999-05-151-4/+4
|
* Update dependencies.Ben Laurie1999-05-131-44/+46
|
* Remove redundant ifdef.Ulf Möller1999-05-132-10/+2
|
* VMS support.Ulf Möller1999-05-1315-128/+1078
| | | | Submitted by: Richard Levitte <richard@levitte.org>
* Support INSTALL_PREFIX for packagers.Bodo Möller1999-04-291-2/+4
| | | | | | Submitted by: Reviewed by: PR:
* Ignore Makefile.saveUlf Möller1999-04-291-0/+1
| | | | Submitted by: Anonymous
* Obey $(PERL) when running util/mklink.pl.Bodo Möller1999-04-291-3/+3
| | | | | | Submitted by: Reviewed by: PR:
* Use util/mklink.pl instead of util/mklink.sh.Bodo Möller1999-04-291-3/+3
| | | | | | Submitted by: Reviewed by: PR:
* New Configure option no-<cipher> (rsa, idea, rc5, ...).Ulf Möller1999-04-274-3/+18
|
* Remove NOPROTO definitions and error code comments.Ulf Möller1999-04-2610-150/+0
|
* Various header consistency fixes.Dr. Stephen Henson1999-04-251-0/+3
|
* Complete rewrite of the error code generation script. It now runs as a singleDr. Stephen Henson1999-04-241-2/+0
| | | | | | | script, translates function codes better and doesn't need the K&R function prototypes to work (NB. the K&R prototypes can't be wiped just yet: they are still needed by the DEF generator...). I also ran the script with the -rewrite option to update all the header and source files.
* Submitted by:Bodo Möller1999-04-242-2/+2
| | | | | Reviewed by: PR:
* "make depend"Bodo Möller1999-04-241-32/+65
| | | | | | Submitted by: Reviewed by: PR:
* Remove header files from .cvsignore.Ulf Möller1999-04-241-2/+0
|
* Change #include filenames from <foo.h> to <openssl.h>.Bodo Möller1999-04-249-12/+12
| | | | | | Submitted by: Reviewed by: PR:
* Work with -pedantic!Ben Laurie1999-04-235-49/+52
|
* Remove references to .org header file names.Ulf Möller1999-04-223-3/+3
|
* Fixed some race conditions.Bodo Möller1999-04-221-1/+1
| | | | | | Submitted by: Reviewed by: PR:
* Move all autogenerated header file parts to crypto/opensslconf.h.Ulf Möller1999-04-212-97/+2
|
* Remove some unnecessary(?) casting.Ben Laurie1999-04-212-14/+14
|
* Fix lots of warnings.Ulf Möller1999-04-214-17/+17
| | | | Submitted by: Richard Levitte <levitte@stacken.kth.se>
* Arguments are des_cblock.Ulf Möller1999-04-202-2/+2
|
* Missing #endif.Ulf Möller1999-04-201-0/+1
|
* Change functions to ANSI C.Ulf Möller1999-04-1934-339/+121
|
* Definition did not match prototype.Ulf Möller1999-04-191-2/+2
| | | | Pointed out by: Bernhard Simon <simon@zid.tuwien.ac.at>
* Massive constification.Ben Laurie1999-04-179-48/+50
|
* Some tiny fixes.Bodo Möller1999-04-141-1/+1
| | | | | | | | | | Submitted by: Reviewed by: PR: Submitted by: Reviewed by: PR:
* Install signal handler if we are using sigaction.Ben Laurie1999-04-101-1/+7
|
* Be more optimistic about the availability of termios for ~ECHO,Bodo Möller1999-04-081-0/+15
| | | | | | | because sgtty emulation tends to fail on various systems. Submitted by: Reviewed by: PR:
* Remove obsolete files.Ulf Möller1999-04-0110-6089/+0
|
* New Makefile variables $(RANLIB) and $(PERL).Ulf Möller1999-04-013-44/+9
|
* Added comments to des_enc_{read,write} functions warning about theirBodo Möller1999-03-292-0/+33
| | | | cryptographic weakness (IV reuse).
* Fix security hole.Ben Laurie1999-03-222-5/+10
|
* Remove some references which called malloc and free instead of Malloc and Free.Dr. Stephen Henson1999-03-142-4/+7
|
* Update dependencies.Ben Laurie1999-03-121-0/+2
|
* Fix couple of ANSI declarations and prototypesDr. Stephen Henson1999-03-101-6/+10
|
* Fix quad checksum bug.Ben Laurie1999-03-091-1/+1
|
* Various fixes to Win32, update ssleay.num, libeay.num, shuffle various #ifdefsDr. Stephen Henson1999-03-081-5/+1
| | | | around so more options appear in e_os.h
* Put the dependencies back.Ben Laurie1999-03-061-0/+27
|
* General source tree makefile cleanups: Made `making xxx in yyy...' displayRalf S. Engelschall1999-03-061-37/+6
| | | | | | | | consistent in the source tree and replaced `/bin/rm' by `rm'. Additonally cleaned up the `make links' target: Remove unnecessary semicolons, subsequent redundant removes, inline point.sh into mklink.sh to speed processing and no longer clutter the display with confusing stuff. Instead only the actually done links are displayed.
* Workaround for a Win95 console bug triggered by the password read stuff.Dr. Stephen Henson1999-03-051-0/+23
|
* More CVS ignore stuff...Ralf S. Engelschall1999-02-251-0/+2
|
* Fix more warnings.Ben Laurie1999-02-231-11/+19
|
* Add OAEP.Ben Laurie1999-02-171-0/+5
|
* More Win32 fixes and upsdate INSTALL.W32 documentation.Dr. Stephen Henson1999-02-141-0/+1
|
* Finally(?) fix DES stuff.Ben Laurie1999-02-135-69/+83
|