summaryrefslogtreecommitdiffstats
path: root/doc
AgeCommit message (Collapse)Author
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.
2001-02-16ispellUlf Möller
2001-02-16pod format errorUlf Möller
2001-02-15Add "-rand" option to s_client and s_server.Lutz Jänicke
2001-02-14Option to disable standard block padding with EVP API.Dr. Stephen Henson
Add -nopad option to enc command. Update docs.
2001-02-13Finish first round of session cache documentation.Lutz Jänicke
2001-02-13New manual page: SSL_CTX_set_mode.Lutz Jänicke
2001-02-11More about session caching.Lutz Jänicke
2001-02-10Include information that automatic query is a new feature.Lutz Jänicke
2001-02-10Update for 0.9.7 with SSL_OP_CIPHER_SERVER_PREFERENCE.Lutz Jänicke
2001-02-10Manual page for SSL_CTX_set_options(). Unfortunately for some of theLutz Jänicke
options someone much longer working with OpenSSL/SSLeay is needed.
2001-02-10Simplify BN_rand_rangeBodo Möller
2001-02-09Fix "wierd" typo as submitted by Jeroen Ruigrok/Asmodai <asmodai@wxs.nl>.Lutz Jänicke
2001-02-08Note that EGD is used automatically.Ulf Möller
2001-02-08cleanupUlf Möller
2001-02-08Integrate my implementation of a countermeasure againstBodo Möller
Bleichenbacher's DSA attack. With this implementation, the expected number of iterations never exceeds 2. New semantics for BN_rand_range(): BN_rand_range(r, min, range) now generates r such that min <= r < min+range. (Previously, BN_rand_range(r, min, max) generated r such that min <= r < max. It is more convenient to have the range; also the previous prototype was misleading because max was larger than the actual maximum.)
2001-02-08Update documentation to match the state at 0.9.6 _and_ the recent changes.Lutz Jänicke
2001-02-07Bleichenbacher's DSA attackUlf Möller
2001-02-04Documenting session caching, 2nd step.Lutz Jänicke
2001-02-03Clarify why SSL_CTX_use_certificate_chain_file() should be preferred.Lutz Jänicke
2001-02-03Typo: on my screen it nicely wrapped around at 80 :-)Lutz Jänicke
2001-02-02Document session caching, first step.Lutz Jänicke
2001-01-31New manual page for a hardly known but important item :-)Lutz Jänicke
2001-01-25Insert a missing space to stop pod2man giving stroppy "malformed" warnings.Geoff Thorpe
2001-01-23Copy over just written manpage to the ones still missing.Lutz Jänicke
2001-01-23Add entries for new manpages...Lutz Jänicke
2001-01-21Use the correct number of arguments in the example.Ulf Möller
2001-01-20Documentation about SSL_get_ex_data_X509_STORE_CTX_idx andLutz Jänicke
SSL_get_ex_new_index() functionality. Extended verify_callback() example to show the usage.
2001-01-20Update ocsp utility documentation.Dr. Stephen Henson
2001-01-15link to the new manpage.Ulf Möller
2001-01-15New '-extfile' option for 'openssl ca'.Bodo Möller
This allows keeping extensions in a separate configuration file. Submitted by: Massimiliano Pala <madwolf@comune.modena.it>
2001-01-14Update the LHASH man page.Geoff Thorpe
* Correct some prototypes and macros with respect to "const"ness. * Add the extra macros and examples due to the lh_doall[_arg] modifications made recently. The existing example is also reworked for consistency. * Rewrite, tweak, and supplement bits of the existing comments that seemed (IMHO) to be a little convoluted and misleading. * Add a NOTE section that explains the use of macros and avoiding function casts (ie. generate a wrapper as with the macros, or prototype any callback functions exactly to not require casting). Also, explain the "const" approach taken in LHASH for the purposes of API comprehensibility and also application code auditing.
2001-01-14Preliminary ocsp utility documentation.Dr. Stephen Henson
Fix ocsp usage message.
2001-01-11New -newreq-nodes option to CA.pl.Bodo Möller
Submitted by: Damien Miller <djm@mindrot.org>
2001-01-10Add a pointer to digest options in the description of -fingerprint.Bodo Möller
2000-12-25Fix SSL_peek and SSL_pending.Bodo Möller
2000-12-13c&p error spotted by Martin ForssenUlf Möller
2000-12-12Add description of SSL_[CTX_]_check_private_key().Lutz Jänicke
2000-12-08Add manual pages for certficate/key loading and friends.Lutz Jänicke
2000-12-05Update the internal docs.Richard Levitte
2000-12-05Typo and additional information about cert-chain building.Lutz Jänicke
2000-12-05Add EXAMPLES for SSL_CIPHER_description() output.Lutz Jänicke
2000-12-04Sync up with a minor change in lhash.hGeoff Thorpe
2000-12-04Update the documentation to the current state of the LHASH changes. ThereGeoff Thorpe
will probably be more when the lh_doall[_arg] callbacks are similarly tidied up, but this 'pod' should now be current.
2000-12-01Write a first HOWTO on how to create certificates. This is currentlyRichard Levitte
a draft.
2000-11-29Add a warning about the usage of the montgomery functions (if the inputsUlf Möller
are not reduced modulo m, the outputs won't be either).
2000-11-26More BN_mod_... functions.Bodo Möller
2000-11-26Add bn_mod.c (should have happend in the previous commit ...).Bodo Möller
BN_swap manual page.
2000-11-26modular arithmeticsBodo Möller
"make update"
2000-11-17Documentation on using the SSL library with non-blocking I/O.Bodo Möller