aboutsummaryrefslogtreecommitdiffstats
path: root/doc/crypto
Commit message (Collapse)AuthorAgeFilesLines
* Missing link ("Greg Stark" <gstark@ethentica.com>)Lutz Jänicke2001-04-121-1/+1
|
* Update docs.Bodo Möller2001-03-212-7/+7
|
* Initial docs for PEM routines.Dr. Stephen Henson2001-03-111-0/+453
|
* Change the EVP_somecipher() and EVP_somedigest()Dr. Stephen Henson2001-03-091-17/+18
| | | | | | | functions to return constant EVP_MD and EVP_CIPHER pointers. Update docs.
* Constify BN_value_one.Bodo Möller2001-03-082-2/+2
|
* BN_rand_range() needs a BN_rand() variant that doesn't set the MSB.Ulf Möller2001-02-201-6/+8
|
* Option to disable standard block padding with EVP API.Dr. Stephen Henson2001-02-141-25/+42
| | | | | | Add -nopad option to enc command. Update docs.
* Include information that automatic query is a new feature.Lutz Jänicke2001-02-101-2/+5
|
* Simplify BN_rand_rangeBodo Möller2001-02-102-4/+3
|
* Note that EGD is used automatically.Ulf Möller2001-02-081-0/+3
|
* cleanupUlf Möller2001-02-081-6/+5
|
* Integrate my implementation of a countermeasure againstBodo Möller2001-02-081-3/+3
| | | | | | | | | | | | | | 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.)
* Update documentation to match the state at 0.9.6 _and_ the recent changes.Lutz Jänicke2001-02-081-5/+43
|
* Bleichenbacher's DSA attackUlf Möller2001-02-072-3/+11
|
* Use the correct number of arguments in the example.Ulf Möller2001-01-211-2/+2
|
* Update the LHASH man page.Geoff Thorpe2001-01-141-48/+139
| | | | | | | | | | | | | | | | * 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.
* Update the internal docs.Richard Levitte2000-12-051-9/+10
|
* Sync up with a minor change in lhash.hGeoff Thorpe2000-12-041-2/+2
|
* Update the documentation to the current state of the LHASH changes. ThereGeoff Thorpe2000-12-041-7/+50
| | | | | will probably be more when the lh_doall[_arg] callbacks are similarly tidied up, but this 'pod' should now be current.
* Add a warning about the usage of the montgomery functions (if the inputsUlf Möller2000-11-291-0/+5
| | | | are not reduced modulo m, the outputs won't be either).
* More BN_mod_... functions.Bodo Möller2000-11-261-2/+3
|
* Add bn_mod.c (should have happend in the previous commit ...).Bodo Möller2000-11-261-0/+23
| | | | BN_swap manual page.
* modular arithmeticsBodo Möller2000-11-263-41/+76
| | | | "make update"
* Point to SSL_set_bio(3) early because that manpage providesBodo Möller2000-11-101-1/+2
| | | | information that is essential for using BIO pairs.
* add missing wordBodo Möller2000-11-101-1/+1
|
* Remove references to RSAref. The glue library is but a memory to fadeRichard Levitte2000-11-083-22/+5
| | | | away now...
* looks like a cut&paste errorUlf Möller2000-11-061-1/+1
|
* Merge the engine branch into the main trunk. All conflicts resolved.Richard Levitte2000-10-266-77/+118
| | | | At the same time, add VMS support for Rijndael.
* give pseudo prototypes instead of macro definitions for better clarityUlf Möller2000-10-193-26/+42
|
* cosmetic changeUlf Möller2000-10-181-1/+1
|
* Make non blocking I/O work for accept BIOs.Dr. Stephen Henson2000-10-121-1/+8
|
* The des_modes manpage is in section 7.Ulf Möller2000-09-271-1/+1
|
* typoUlf Möller2000-09-251-1/+1
|
* stop perlpod from complaining.Ulf Möller2000-09-231-1/+1
|
* more manpage links.Ulf Möller2000-09-234-2/+40
|
* Malloc() -> OPENSSL_malloc() etc.Ulf Möller2000-09-204-5/+5
|
* The RSA patent will have expired when the next version is released...Ulf Möller2000-09-201-1/+1
|
* ispell.Ulf Möller2000-09-2015-42/+42
|
* Reorder the Blowfish documentation so the low-level routines do not get so ↵Richard Levitte2000-09-191-8/+11
| | | | prominent, and make sure to say out loud what they expect.
* Clarify the BIO_seek() mess and related issues.Dr. Stephen Henson2000-09-183-10/+98
| | | | Buffering BIO docs.
* Restore the descriptions to conform with the rest of theRichard Levitte2000-09-172-23/+46
| | | | | documentation. We'll work on better documents after the release of 0.9.6.
* Rename new BIO_set_shutdown_wr macro to just BIO_shutdown_wrBodo Möller2000-09-171-3/+3
| | | | | (it's similar to the shutdown(..., SHUT_WR) system call for sockets).
* Move text that isn't really descriptions of the functions in the pageRichard Levitte2000-09-162-30/+34
| | | | | to the NOTES section, and add references to the functions mentioned (and perhaps a few more).
* Add BIO_seek() and BIO_tell() to the BIO control functions manual.Richard Levitte2000-09-161-5/+16
|
* New macro BIO_set_shutdown_wr().Dr. Stephen Henson2000-09-163-7/+154
| | | | Update docs.
* Change spelling back to "behaviour" and "flavour" instead of theBodo Möller2000-09-167-9/+9
| | | | American variants.
* Clarification.Bodo Möller2000-09-161-6/+11
|
* ispell and some other nit-pickingUlf Möller2000-09-1615-35/+33
|
* Remove redundant manpages and references to them.Dr. Stephen Henson2000-09-164-107/+0
|
* add links to the new BIO and SSL manpages to make them visible on the web.Ulf Möller2000-09-161-1/+16
|