summaryrefslogtreecommitdiffstats
path: root/crypto/md32_common.h
AgeCommit message (Collapse)Author
2004-07-30To protect FIPS-related global variables, add locking mechanismsRichard Levitte
around them. NOTE: because two new locks are added, this adds potential binary incompatibility with earlier versions in the 0.9.7 series. However, those locks will only ever be touched when FIPS_mode_set() is called and after, thanks to a variable that's only changed from 0 to 1 once (when FIPS_mode_set() is called). So basically, as long as FIPS mode hasn't been engaged explicitely by the calling application, the new locks are treated as if they didn't exist at all, thus not becoming a problem. Applications that are built or rebuilt to use FIPS functionality will need to be recompiled in any case, thus not being a problem either.
2004-05-11Pull FIPS back into stable.Ben Laurie
2003-08-11A new branch for FIPS-related changes has been created with the nameRichard Levitte
OpenSSL-fips-0_9_7-stable. Since the 0.9.7-stable branch is supposed to be in freeze and should only contain bug corrections, this change removes the FIPS changes from that branch.
2003-07-27Unfinished FIPS stuff for review/improvement.Ben Laurie
2002-12-14x86_64 performance patch.Andy Polyakov
2002-11-28Cleanse memory using the new OPENSSL_cleanse() function.Richard Levitte
I've covered all the memset()s I felt safe modifying, but may have missed some.
2002-11-20avoid uninitialized memory readBodo Möller
Submitted by: Nils Larsch
2001-10-14openbsd-x86 macrosUlf Möller
Submitted by: Toomas Kiisk <vix@cyber.ee>
2001-03-08Make EVP_Digest*() routines return a value.Dr. Stephen Henson
TODO: update docs, and make soe other routines which use EVP_Digest*() check return codes.
2001-02-19Make all configuration macros available for application by makingRichard Levitte
sure they are available in opensslconf.h, by giving them names starting with "OPENSSL_" to avoid conflicts with other packages and by making sure e_os2.h will cover all platform-specific cases together with opensslconf.h. I've checked fairly well that nothing breaks with this (apart from external software that will adapt if they have used something like NO_KRB5), but I can't guarantee it completely, so a review of this change would be a good thing.
2000-10-30_lrotl() is a call to the C runtime library!Ulf Möller
2000-02-16Fix signed/unsigned warnings.Ben Laurie
2000-02-15New NO_INLINE_ASM macro. Primary target for the moment is Solaris x86Andy Polyakov
which can't stand GNU C assembler templates.
2000-02-06Support for MacOS X (Rhapsody) is added. Also get rid of volatileAndy Polyakov
qualifier in asm definitions as it prevents compiler from moving the instruction(s) during optimization pass.
2000-01-02Metrowerks for Motorola tune-up.Andy Polyakov
1999-12-19Late break-in patch for MacOS support.Andy Polyakov
1999-12-19MacOS updates.Andy Polyakov
1999-12-14Solaris x86 assembler problem is already addressed in ./configUlf Möller
(bug reports keep coming in because that was still missing in 0.9.4)
1999-12-08Don't use inline assembler on x86 Solaris (would need a different syntax).Ulf Möller
1999-08-28md32_common.h update and accompanying MD5 update.Andy Polyakov
1999-06-23Don't use inline assembler when configured for "no-asm".Bodo Möller
1999-06-01Borland C fix.Ulf Möller
Submitted by: Andy Polyakov
1999-05-20Some solaris-usparc MD5 fixes.Bodo Möller
1999-05-17Make MD5 work on Alpha, and fix a bug.Bodo Möller
Submitted by: Andy Polyakov
1999-05-15Get rid of casts.Ben Laurie
1999-05-15Get rid of another cast.Bodo Möller
1999-05-15Get rid of the cast.Ben Laurie
1999-05-14Change cast in function calls to that which is, I think, the rightBodo Möller
one for those functions (is it?).
1999-05-13Reorganize and speed up MD5.Ulf Möller
Submitted by: Andy Polyakov <appro@fy.chalmers.se>