summaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2002-11-28Have all tests use EXIT() to exit rather than exit(), since the latter doesn'tRichard Levitte
always give the expected result on some platforms.
2002-11-28Make sure EXIT() can always be used as one statement.Richard Levitte
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-27Add OPENSSL_cleanse() to help cleanse memory and avoid certain compilerRichard Levitte
and linker optimizations. PR: 343
2002-11-27This commit was manufactured by cvs2svn to create branchcvs2svn
'OpenSSL_0_9_7-stable'.
2002-11-27Add OPENSSL_cleanse() to help cleanse memory and avoid certain compilerRichard Levitte
and linker optimizations. PR: 343
2002-11-26I forgot that @ in strings must be escaped in PerlRichard Levitte
2002-11-26I forgot that @ in strings must be escaped in PerlRichard Levitte
2002-11-26The logic in the main signing and verifying functions to check lengths wasRichard Levitte
incorrect. Fortunately, there is a second check that's correct, when adding the pads. PR: 355
2002-11-26The logic in the main signing and verifying functions to check lengths wasRichard Levitte
incorrect. Fortunately, there is a second check that's correct, when adding the pads. PR: 355
2002-11-26Heimdal isn't really supported right now. Say so, and offer a possibilityRichard Levitte
to force the use of Heimdal, and warn if that's used. PR: 346
2002-11-26Heimdal isn't really supported right now. Say so, and offer a possibilityRichard Levitte
to force the use of Heimdal, and warn if that's used. PR: 346
2002-11-26Small bugfixes to the KSSL implementation.Richard Levitte
PR: 349
2002-11-26Small bugfixes to the KSSL implementation.Richard Levitte
PR: 349
2002-11-26Heimdal isn't really supported right now. Say so, and offer a possibilityRichard Levitte
to force the use of Heimdal, and warn if that's used. PR: 346
2002-11-26Heimdal isn't really supported right now. Say so, and offer a possibilityRichard Levitte
to force the use of Heimdal, and warn if that's used. PR: 346
2002-11-23rename some functions to improve consistencyBodo Möller
Submitted by: Sheueling Chang
2002-11-22add a commentBodo Möller
2002-11-22Disable this module if OPENSSL_NO_SOCK is defined.Richard Levitte
2002-11-22Typo. OPENSSL_NO_ECDH, not NO_OPENSSL_ECDHRichard Levitte
2002-11-21Mention a current showstopperRichard Levitte
2002-11-21Mention a current showstopperRichard Levitte
2002-11-20avoid uninitialized memory readBodo Möller
Submitted by: Nils Larsch
2002-11-20avoid uninitialized memory readBodo Möller
Submitted by: Nils Larsch
2002-11-20Make ec_GFp_simple_point_get_affine_coordinates() fasterBodo Möller
for Montgomery representations. Submitted by: Sheueling Chang, Bodo Moeller
2002-11-20Fix bug introduced by the attempt to fix client side external sessionLutz Jänicke
caching (#288): now internal caching failed (#351): Make sure, that cipher_id is set before comparing. Submitted by: Reviewed by: PR: 288 (and 351)
2002-11-20Fix bug introduced by the attempt to fix client side external sessionLutz Jänicke
caching (#288): now internal caching failed (#351): Make sure, that cipher_id is set before comparing. Submitted by: Reviewed by: PR: 288 (and 351)
2002-11-19allocate bio_err before memory debugging is enabled to avoid memory leaksBodo Möller
(we can't release it before the CRYPTO_mem_leaks() call!) Submitted by: Nils Larsch
2002-11-19allocate bio_err before memory debugging is enabled to avoid memory leaksBodo Möller
(we can't release it before the CRYPTO_mem_leaks() call!) Submitted by: Nils Larsch
2002-11-19It works on my laptop :-).Richard Levitte
2002-11-19make updateRichard Levitte
2002-11-19We now work with the development of 0.9.7 beta 5.Richard Levitte
2002-11-19Fix an unsigned/signed mismatch.Richard Levitte
2002-11-19Update STATUSOpenSSL_0_9_7-beta4Richard Levitte
2002-11-19Update STATUSRichard Levitte
2002-11-19Time to release 0.9.7-beta4.Richard Levitte
The tag will be OpenSSL_0_9_7-beta4
2002-11-19make updateRichard Levitte
2002-11-18Add news items for 0.9.6h and expand on the 0.9.7 news as well.Richard Levitte
2002-11-18Add news items for 0.9.6h and expand on the 0.9.7 news as well.Richard Levitte
2002-11-18Document the addition of certificate pairs.Richard Levitte
2002-11-18Add the ASN.1 structures and functions for CertificatePair, which isRichard Levitte
defined as follows (according to X.509_4thEditionDraftV6.pdf): CertificatePair ::= SEQUENCE { forward [0] Certificate OPTIONAL, reverse [1] Certificate OPTIONAL, -- at least one of the pair shall be present -- } The only thing I'm not sure about is if it's implicit or explicit tags that I should count on. For now, I'm thinking explicit, but will gladly stand corrected. Also implement the PEM functions to read and write certificate pairs, and defined the PEM tag as "CERTIFICATE PAIR". This needed to be defined, mostly for the sake of the LDAP attribute crossCertificatePair, but may prove useful elsewhere as well.
2002-11-18Determine HZ exactly as in apps/speed.c.Richard Levitte
2002-11-18Determine HZ exactly as in apps/speed.c.Richard Levitte
2002-11-18Make sure sysconf exists (it doesn't in the VMS C RTL lesser than version 7).Richard Levitte
2002-11-18Make sure sysconf exists (it doesn't in the VMS C RTL lesser than version 7).Richard Levitte
2002-11-18remove redundant functionsBodo Möller
2002-11-18use consistent order of function definitionsBodo Möller
2002-11-18fix memory leak in memory debuggin code ...Bodo Möller
Submitted by: Nils Larsch
2002-11-18fix memory leak in memory debuggin code ...Bodo Möller
Submitted by: Nils Larsch
2002-11-18allocate bio_err before memory debugging is enabled to avoid memory leaksBodo Möller
(we can't release it before the CRYPTO_mem_leaks() call!) Submitted by: Nils Larsch