summaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
1999-04-22Fixed some race conditions.Bodo Möller
Submitted by: Reviewed by: PR:
1999-04-21Oops! Fixup CHANGES.Dr. Stephen Henson
1999-04-21Suppport for CRL distribution points extension. Also document some ofDr. Stephen Henson
this stuff.
1999-04-21New header file opensslconf.h contains the macros set by Configure.Ulf Möller
The configuration process could use some more clean-ups.
1999-04-21Move all autogenerated header file parts to crypto/opensslconf.h.Ulf Möller
1999-04-21Remove some unnecessary(?) casting.Ben Laurie
1999-04-21Fix DES export ciphersuites.Ben Laurie
1999-04-20Fix lots of warnings.Ulf Möller
Submitted by: Richard Levitte <levitte@stacken.kth.se>
1999-04-20Fix some warnings.Ulf Möller
1999-04-20-Wall implies -Wuninitialized.Ulf Möller
1999-04-20Problems with 64-bit long.Ulf Möller
Pointed out by Andy Polyakov <appro@fy.chalmers.se>.
1999-04-20Remove useless defines.Ulf Möller
1999-04-20Problems with 64-bit long.Ulf Möller
Pointed out by Andy Polyakov <appro@fy.chalmers.se>.
1999-04-20Arguments are des_cblock.Ulf Möller
1999-04-20Update dependencies.Ben Laurie
1999-04-20Various fixes so Win32 compile may work. Convert GeneralNames to use safe stack.Dr. Stephen Henson
1999-04-19const correctness.Ben Laurie
1999-04-19Missing #endif.Ulf Möller
1999-04-19Change functions to ANSI C.Ulf Möller
1999-04-19Finish off support for Certificate Policies extension.Dr. Stephen Henson
1999-04-19Clean up prototypes (prepare for removing NOPROTO).Ulf Möller
1999-04-19Document additional Configure flags.Ulf Möller
1999-04-19Error in comment.Ulf Möller
1999-04-19Fix typos in error codes.Ulf Möller
1999-04-19Definition did not match prototype.Ulf Möller
Pointed out by: Bernhard Simon <simon@zid.tuwien.ac.at>
1999-04-19Defunct assembler files removed; various cleanups.Ulf Möller
New Ultrix and Alpha entries submitted by Bernhard Simon <simon@zid.tuwien.ac.at>.
1999-04-19SPARC v8 assembler BIGNUM code.Ulf Möller
Submitted by: Andy Polyakov <appro@fy.chalmers.se>
1999-04-19New "Configure" entry (Solaris with debug info)Bodo Möller
Submitted by: Reviewed by: PR:
1999-04-19Removed extra semicolons.Bodo Möller
Submitted by: Reviewed by: PR:
1999-04-19Pass $PERL on make errors.Ulf Möller
1999-04-18Initial support for Certificate Policies extension: print out works but settingDr. Stephen Henson
isn't fully implemented (yet).
1999-04-18Fix const declarations.Ben Laurie
1999-04-18Update dependencies.Ben Laurie
1999-04-17Allow asn1parse to print out VISIBLESTRING and some code needed for certificateDr. Stephen Henson
policies extension.
1999-04-17Massive constification.Ben Laurie
1999-04-17Add support for VISIBLESTRING and UTF8StringDr. Stephen Henson
1999-04-17Another STACK bites the dust.Ben Laurie
1999-04-16Add initial support for r2i RAW extensions which can access the config databaseDr. Stephen Henson
add various X509V3_CTX helper functions and support for LHASH as the config database.
1999-04-16Fix some warnings. Contributed by Anonymous.Ben Laurie
1999-04-16Another bug.Ulf Möller
1999-04-16Write random seed file in binary mode.Ulf Möller
Submitted by: Richard Levitte <levitte@stacken.kth.se>
1999-04-15Fix a horrible BN bug in bn_expand2 which caused BN_add_word() et al to failDr. Stephen Henson
when they cause the destination to expand. To see how evil this is try this: #include <pem.h> main() { BIGNUM *bn = NULL; int i; bn = BN_new(); BN_hex2bn(&bn, "FFFFFFFF"); BN_add_word(bn, 1); printf("Value %s\n", BN_bn2hex(bn)); } This would typically fail before the patch. It also screws up if you comment out the BN_hex2bn line above or in any situation where BN_add_word() causes the number of BN_ULONGs in the result to change (try doubling the number of FFs).
1999-04-15Add new experimental ciphersuites. Bring naming into line with RFC.Ben Laurie
1999-04-15Just use an ANSI declaration, instead.Ben Laurie
1999-04-14/* Just some comments. */Bodo Möller
Submitted by: Reviewed by: PR:
1999-04-14Add some utilities to support SXNet extension also add support in DEF filesDr. Stephen Henson
generator to typesafe stacks.
1999-04-14Cleaning up Ben's clean-ups :-)Bodo Möller
Submitted by: Reviewed by: PR:
1999-04-14Make Windows compilers happy.Bodo Möller
Submitted by:Tom Titchener Reviewed by: PR:
1999-04-14Some tiny fixes.Bodo Möller
Submitted by: Reviewed by: PR: Submitted by: Reviewed by: PR:
1999-04-14Typo.Ben Laurie