aboutsummaryrefslogtreecommitdiffstats
Commit message (Expand)AuthorAgeFilesLines
* Use sh explicitely to run point.shRichard Levitte2003-12-2747-49/+49
* Include strings.h so strcasecmp() and strncasecmp() get properly declared.Richard Levitte2003-12-271-1/+2
* Use BUF_strlcpy() instead of strcpy().Richard Levitte2003-12-2743-182/+233
* Add a newline at the end of the last line.Richard Levitte2003-12-272-2/+2
* Typos.Dr. Stephen Henson2003-12-201-3/+3
* To figure out if we're going outside the buffer, use the size of the buffer,Richard Levitte2003-12-111-3/+3
* Document that you need to include x509.h (to get [i2d|d2i]_RSA_PUBKEY()).Richard Levitte2003-12-101-2/+3
* Document that you need to include x509.h (to get [i2d|d2i]_DSA_PUBKEY()).Richard Levitte2003-12-101-2/+3
* Add "dif" variable to clean up the loop implementations.Ulf Möller2003-12-061-45/+46
* Skip a curve with generator of non-prime order.Ulf Möller2003-12-061-0/+2
* Avoid segfault if ret==0.Ulf Möller2003-12-061-1/+2
* Restructure make targets to allow parallel make.Lutz Jänicke2003-12-032-4/+4
* Incremental cleanups to bn_lib.c.Geoff Thorpe2003-12-021-48/+38
* Use the BN_is_odd() macro in place of code that (inconsistently) does muchGeoff Thorpe2003-12-022-5/+7
* BN_FLG_FREE is of extremely dubious usefulness, and is only referred toGeoff Thorpe2003-12-022-1/+9
* Declare the static BIGNUM "BN_value_one()" more carefully.Geoff Thorpe2003-12-011-1/+1
* Add missing bn_check_top()s to bn_kron.c, remove some miscellaneousGeoff Thorpe2003-12-011-3/+5
* Add missing bn_check_top()s to bn_gf2m.c and remove some miscellaneousGeoff Thorpe2003-12-011-29/+70
* The bn_set_max() macro is only "used" by the bn_set_[low|high]() macrosGeoff Thorpe2003-12-011-32/+0
* bn_fix_top() exists for compatibility's sake and is mapped toGeoff Thorpe2003-12-011-2/+2
* It was pointed out to me that if the requested size is 0, we shouldn'tRichard Levitte2003-12-011-4/+11
* Check that OPENSSL_malloc() really returned some memory.Richard Levitte2003-12-011-0/+5
* CRYPTO_malloc(), CRYPTO_realloc() and variants of them should return NULLRichard Levitte2003-12-011-4/+4
* Some more ASFLAGS settings requiredLutz Jänicke2003-12-012-0/+2
* Add more debugging to my Configure target, and "make update" to incorporateGeoff Thorpe2003-11-303-6/+68
* If BN_STRICT is defined, don't accept an ambiguous representation of zeroGeoff Thorpe2003-11-301-2/+20
* Improve a couple of the bignum macros. Note, this doesn't eliminateGeoff Thorpe2003-11-301-5/+5
* Make BN_DEBUG_RAND less painfully slow by only consuming one byte ofGeoff Thorpe2003-11-301-1/+3
* This improves the placement of check_top() macros in a couple of bn_libGeoff Thorpe2003-11-291-2/+7
* Make sure the documentation matches reality.Richard Levitte2003-11-291-2/+2
* We're getting a clash with C++ because it has a type called 'list'.Richard Levitte2003-11-296-47/+48
* Add IPSec/IKE/Oakley curves.Richard Levitte2003-11-295-4/+51
* Damnit, I'm sick of having to do something special every time a moduleRichard Levitte2003-11-293-5/+9
* RSA_size() and DH_size() return the amount of bytes in a key, and weRichard Levitte2003-11-281-2/+2
* 1024 is the export key bits limit according to current regulations, not 512.Richard Levitte2003-11-281-1/+1
* Get rid of some signed/unsigned comparison warnings.Geoff Thorpe2003-11-281-7/+14
* Make a number of changes to the OS/2 build. Submitter's comment below.Richard Levitte2003-11-285-25/+125
* Move another common functionality (reproduced so far with cut'n'paste)Richard Levitte2003-11-283-33/+34
* Let's use text/plain in the example instead of crapy HTML.Richard Levitte2003-11-281-3/+3
* Forgot to change the declaration of do_subject() to one of parse_name()...Richard Levitte2003-11-281-1/+1
* Move do_subject() to apps.c and rename it to parse_name(). TheRichard Levitte2003-11-283-138/+139
* Allow multi-valued rdns in subjects. This adds the -multivalue-rdn optionRichard Levitte2003-11-283-28/+51
* Netware-specific changes,Richard Levitte2003-11-2867-43/+3490
* Change my debugging entries to do fierce BIGNUM debugging.Richard Levitte2003-11-281-4/+4
* Due to recent debugging bursts, openssl should be more or less solidGeoff Thorpe2003-11-251-3/+3
* Fix some handling in bn_word. This also resolves the issues observed inGeoff Thorpe2003-11-251-6/+19
* Some changes for bn_gf2m.c: better error checking plus some minorGeoff Thorpe2003-11-251-30/+48
* Free "engine" resource in case of failure to prevent memory leakLutz Jänicke2003-11-241-1/+4
* BN_div() cleanup: replace the use of BN_sub and BN_add with bn_sub_wordsGeoff Thorpe2003-11-221-36/+45
* Fix a small bug in str_copy: if more than one variable is replaced, makeGeoff Thorpe2003-11-211-1/+1