aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2000-12-04Update the documentation to the current state of the LHASH changes. ThereGeoff Thorpe1-7/+50
will probably be more when the lh_doall[_arg] callbacks are similarly tidied up, but this 'pod' should now be current.
2000-12-04Make a note of the LHASH changes.Geoff Thorpe1-0/+6
2000-12-04Make the remaining LHASH macro changes. This should leave no remainingGeoff Thorpe6-15/+39
cases of function pointer casting in lh_new() calls - and leave only the lh_doall and lh_doall_arg cases to be finished.
2000-12-03Fix warnings.Ben Laurie3-7/+13
2000-12-03include <limits.h>Bodo Möller1-0/+1
2000-12-03Don't allow BIGNUMs to become so large that computations with dmaxBodo Möller3-0/+8
might overflow.
2000-12-02Use the new LHASH macros to declare type-safe wrapper functions that canGeoff Thorpe2-17/+26
be used as the hash/compare callbacks without function pointer casting. For now, this is just happening in the apps/ directory whilst a few people check the approach. The rest of the library will be moved across to the same idea if there's no problems with this.
2000-12-02Next step in tidying up the LHASH code. This commit defines DECLARE andGeoff Thorpe1-0/+29
IMPLEMENT macros for defining wrapper functions for "hash" and "cmp" callbacks that are specific to the underlying item type in a hash-table. This prevents function pointer casting altogether, and also provides some type-safety because the macro does per-variable casting from the (void *) type used in LHASH itself to the type declared in the macro - and if that doesn't match the prototype expected by the "hash" or "cmp" function then a compiler error will result. NB: IMPLEMENT macros are not required unless predeclared forms are required (either in a header file, or further up in a C file than the implementation needs to be). The DECLARE macros must occur after the type-specific hash/cmp callbacks are declared. Also, the IMPLEMENT and DECLARE macros are such that they can be prefixed with "static" if desired and a trailing semi-colon should be appended (making it look more like a regular declaration and easier on auto-formatting text-editors too). Now that these macros are defined, I will next be commiting changes to a number of places in the library where the casting was doing bad things. After that, the final step will be to make the analogous changes for the lh_doall and lh_doall_arg functions (more specifically, their callback parameters).
2000-12-02Add a comment to explain the purpose of bn_cmp_part_words().Richard Levitte1-0/+7
2000-12-02last commit was wrong. Now it works. :)Ulf Möller1-2/+2
2000-12-02arglUlf Möller1-1/+1
2000-12-02remember the problem with ftime()Ulf Möller1-1/+1
2000-12-02forgot to remove the loop variableUlf Möller1-8/+0
2000-12-02Loops like this one:Ulf Möller1-28/+0
if (bp == NULL) for (j=0; j<10000; j++) BN_add(&c,&a,&b); seem to be pretty useless, and bp never is NULL anyway.
2000-12-02Move the rijndael "test" to the bf and cast tests.Ulf Möller1-2/+2
2000-12-02Note the bntest change.Ulf Möller1-5/+7
The *_part_words functions are not static.
2000-12-02New function BN_bntest_rand() to detect more BN library bugs.Ulf Möller3-35/+63
The bn_cmp_part_words bug was only caught in the BN_mod_mul() test, not in the BN_mul() test, so apparently the choice of parameters in some cases is bad.
2000-12-02Fix bn_cmp_part_words() and move it to bn_lib.c.Ulf Möller3-13/+29
2000-12-02remove unused static functionUlf Möller1-0/+2
2000-12-01First step in tidying up the LHASH code. The callback prototypes (andGeoff Thorpe15-40/+66
casts) used in the lhash code are about as horrible and evil as they can be. For starters, the callback prototypes contain empty parameter lists. Yuck. This first change defines clearer prototypes - including "typedef"'d function pointer types to use as "hash" and "compare" callbacks, as well as the callbacks passed to the lh_doall and lh_doall_arg iteration functions. Now at least more explicit (and clear) casting is required in all of the dependant code - and that should be included in this commit. The next step will be to hunt down and obliterate some of the function pointer casting being used when it's not necessary - a particularly evil variant exists in the implementation of lh_doall.
2000-12-01Write a first HOWTO on how to create certificates. This is currentlyRichard Levitte1-0/+85
a draft.
2000-12-01Correct a mail address...Richard Levitte1-1/+1
2000-12-01Document the addition of Kerberos stuff.Richard Levitte1-0/+6
2000-12-01Typo corrected.Richard Levitte1-1/+1
2000-12-01functionality for BN_mod_sqrt timingsBodo Möller1-30/+72
2000-12-01"make depend"Bodo Möller4-765/+745
2000-12-01updateBodo Möller1-0/+21
2000-12-01GPL FAQ.Ulf Möller1-0/+19
I hope this adequately summarizes the results of all those disussions.
2000-12-01Borland C fix.Ulf Möller1-0/+3
2000-12-01typoUlf Möller1-1/+1
2000-12-01Recognise Darwin as well. For now, have it do exactly the same thing as for ↵Richard Levitte2-1/+7
Rhapsody
2000-11-30COMP_zlib should always be declared, even if it is not functional.Bodo Möller2-3/+1
Don't dump core in ssltest.
2000-11-30Fix the recently introduced test that checks if the result is 0Bodo Möller1-2/+2
2000-11-30First tentative impementation of Kerberos 5 cryptos and keys for SSL/TLS. ↵Richard Levitte21-811/+1873
Implemented by Vern Staats <staatsvr@asc.hpc.mil>, further hacked and distributed by Jeffrey Altman <jaltnab@columbia.edu>
2000-11-30Fix BN_rshift, which caused lots of trouble.Bodo Möller4-19/+11
2000-11-30Remove randomness from the test. These constants give me a segmentBodo Möller1-2/+8
violation in test_kron on a 32 bit system.
2000-11-30BN_mod_exp(r,a,p,m,ctx) should not be called with r == p.Bodo Möller1-45/+19
But even if this is avoided, there are still segmentation violations (during one of the BN_free()s at the end of test_kron in some cases, in other cases during BN_kronecker, or later in BN_sqrt; choosing a different exponentiation algorithm in bntest.c appears to influence when the SIGSEGV takes place).
2000-11-30It's "#elif", not "#elsif".Bodo Möller1-1/+31
2000-11-30A few bug fixes for Windows.Richard Levitte1-5/+5
2000-11-30Changes to Lenka's Montgomery implementation.Bodo Möller4-122/+186
Submitted by: Lenka Fibikova
2000-11-30New format for the FAQ. We now have different sections for differentRichard Levitte2-196/+228
types of questions. Hopefully, that'll make them easier to spot, and specially, easier to refer to.
2000-11-30Corrections to the comments in BN_mod_inverse.Bodo Möller1-7/+7
2000-11-30The compression method may be undefined for some reason that hasRichard Levitte1-0/+3
generated errors. Therefore, print whatever error there may be...
2000-11-30Simplify and provide the possibility to clean a compression method.Richard Levitte1-12/+10
2000-11-30comp_methods in a SSL_CTX points at an internal database. Do *not*Richard Levitte1-0/+4
free that, since it's shared by all SSL_CTX's, present and future.
2000-11-30Turn off memory checking when loading new compression algorithms.Richard Levitte1-1/+5
2000-11-30COMP_METHOD has a new argument since some time back...Richard Levitte2-0/+3
2000-11-30Make it possible to test SSL compressionRichard Levitte2-29/+68
2000-11-30Change c_zlib further to allow loading a shared zlib on all operatingRichard Levitte1-34/+51
systems where such an operation is supported.
2000-11-30BN_mod_exp problems ...Bodo Möller1-0/+10