aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/sha
Commit message (Collapse)AuthorAgeFilesLines
* "make update"Bodo Möller1999-09-101-2/+2
|
* some more patches for avoiding problems with non-automatic variablesBodo Möller1999-09-082-10/+10
|
* Fix warnings.Ben Laurie1999-09-061-6/+6
|
* SHA clean-up Intel assembler companion.Andy Polyakov1999-09-052-573/+672
| | | | | | | I've chosen to nest two functions in order to save about 4K. As a result s1-win32.asm doesn't look right (nested PROC/ENDP SEGMENT/ENDS) and it's probably impossible to compile. I assume I have to reconsider... But not today...
* SHA clean-up and (LP64) tune-up.Andy Polyakov1999-09-055-1051/+367
| | | | | | | | | | | "Clean-up" stands for the fact that it's using common message digest template ../md32_common.h and sha[1_]dgst.c are reduced down to '#define SHA_[01]' and then '#include "sha_locl.h"'. It stands "(LP64)" there because it's 64 bit platforms which benefit most from the tune-up. The updated code exhibits 40% performance improvement on IRIX64 (sounds too good, huh? I probably should double check if it's not some cache trashing that was holding it back before), 28% - on Alpha Linux and 12% - Solaris 7/64.
* Don't use inline assembler when configured for "no-asm".Bodo Möller1999-06-231-1/+1
|
* Avoid some warnings (on silly compilers).Bodo Möller1999-06-122-2/+2
|
* Support the EBCDIC character set and BS2000/OSD-POSIX (work in progress).Ulf Möller1999-06-043-0/+27
| | | | Submitted by: Martin Kraemer <Martin.Kraemer@MchP.Siemens.De>
* Update dependencies.Ben Laurie1999-05-291-0/+2
|
* Some assembler-related clean-ups.Bodo Möller1999-05-281-1/+1
|
* I386_ONLY is defined in opensslconf.h, so we need to include it.Bodo Möller1999-05-271-0/+2
| | | | Submitted by: John Keith <jtkeith@kavi.com>
* Temporary workaround for IRIX64 build.Bodo Möller1999-05-252-4/+4
| | | | Submitted by: Andy Polyakov <appro@fy.chalmers.se>
* Use ifndef PEDANTIC for all inline assembler.Ulf Möller1999-05-111-2/+2
|
* Moved some variable declarations inside blocks where they are neededBodo Möller1999-05-101-11/+17
| | | | | | | | | so that warnings about unused variables (for certain -D... constellations) are avoided; this corresponds to the earlier change for SHA1. Submitted by: Reviewed by: PR:
* Fix various things to let OpenSSL even pass ``egcc -pipe -O2 -Wall -WshadowRalf S. Engelschall1999-05-101-3/+3
| | | | | -Wpointer-arith -Wcast-align -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Winline'' with EGCS 1.1.2+
* Move variable definitions into the blocks where they are really needed,Bodo Möller1999-05-091-11/+17
| | | | | | | | | so that warnings about unused variables don't appear if those blocks are removed by the C preprocessor. Submitted by: Reviewed by: PR:
* Make -pedantic work again.Ben Laurie1999-05-071-1/+1
|
* SHA-1 cleanups and performance enhancements.Ulf Möller1999-05-054-127/+283
| | | | Submitted by: Andy Polyakov <appro@fy.chalmers.se>
* Unused file.Ulf Möller1999-04-291-238/+0
|
* 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-281-3/+3
| | | | | | Submitted by: Reviewed by: PR:
* Ignore autogenerated assembler files.Ulf Möller1999-04-281-0/+1
|
* Message digest stuff.Ulf Möller1999-04-275-8/+9
|
* New Configure option no-<cipher> (rsa, idea, rc5, ...).Ulf Möller1999-04-278-2/+35
|
* Remove NOPROTO definitions and error code comments.Ulf Möller1999-04-267-53/+0
|
* 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-231-1/+1
| | | | | Reviewed by: PR:
* "make depend"Bodo Möller1999-04-231-4/+6
| | | | | | Submitted by: Reviewed by: PR:
* Change #include filenames from <foo.h> to <openssl.h>.Bodo Möller1999-04-239-13/+13
| | | | | | Submitted by: Reviewed by: PR:
* Fix some warnings.Ulf Möller1999-04-201-1/+1
|
* Problems with 64-bit long.Ulf Möller1999-04-204-51/+55
| | | | Pointed out by Andy Polyakov <appro@fy.chalmers.se>.
* Remove useless defines.Ulf Möller1999-04-202-14/+0
|
* Change functions to ANSI C.Ulf Möller1999-04-198-64/+23
|
* New Makefile variables $(RANLIB) and $(PERL).Ulf Möller1999-04-012-5/+5
|
* New option to generate 80386 code.Ulf Möller1999-03-312-2/+2
|
* Remove file that is to be auto-generated by sha1-586.pl.Ulf Möller1999-03-301-1948/+0
| | | | PR:
* Fix security hole.Ben Laurie1999-03-223-4/+6
|
* Some more source tree cleanups (removed obsolete files crypto/bf/asm/bf586.pl,Ralf S. Engelschall1999-03-201-1905/+0
| | | | | | | | test/test.txt and crypto/sha/asm/f.s; changed permission on "config" script to be executable) and a fix for the INSTALL document. Submitted by: Ulf Moeller <ulf@fitug.de> Reviewed by: Ralf S. Engelschall
* Put the dependencies back.Ben Laurie1999-03-061-0/+5
|
* General source tree makefile cleanups: Made `making xxx in yyy...' displayRalf S. Engelschall1999-03-061-11/+5
| | | | | | | | 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.
* This time, get it right.Ben Laurie1999-01-191-1/+4
|
* Finally lay dependencies to rest (I hope!).Ben Laurie1999-01-191-1/+3
|
* Get rid of redundant files.Ben Laurie1999-01-091-0/+0
|
* Fix version stuff:Ralf S. Engelschall1998-12-312-2/+2
| | | | | | | | | | | 1. The already released version was 0.9.1c and not 0.9.1b 2. The next release should be 0.9.2 and not 0.9.1d, because first the changes are already too large, second we should avoid any more 0.9.1x confusions and third, the Apache version semantics of VERSION.REVISION.PATCHLEVEL for the version string is reasonable (and here .2 is already just a patchlevel and not major change). tVS: ----------------------------------------------------------------------
* *** empty log message ***OpenSSL_0_9_1cRalf S. Engelschall1998-12-232-2/+2
|
* Switch version string to SSLeay/OpenSSLRalf S. Engelschall1998-12-232-2/+2
|
* Various cleanups and fixed by Marc and Ralf to start the OpenTLS projectRalf S. Engelschall1998-12-224-2091/+3
|
* Import of old SSLeay release: SSLeay 0.9.1b (unreleased)Ralf S. Engelschall1998-12-216-5/+3999
|