summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* avoid SIGSEGVBodo Möller2002-08-071-3/+3
| | | | Submitted by: Nils Larsch, Douglas Stebila
* These are updates/fixes to DH/DSA/RAND docs based on the fixes to the RSAGeoff Thorpe2002-08-0511-120/+232
| | | | | | docs. There were a couple of other places (including RSA) where the docs were not quite synchronised with the API that are now fixed. One or two still remain to be fixed though ...
* typo fixGeoff Thorpe2002-08-051-1/+1
|
* Various parts of the RSA documentation were inaccurate and out of date andGeoff Thorpe2002-08-043-57/+107
| | | | | | this fixes those that I'm currently aware of. In particular, the ENGINE interference in the RSA API has hopefully been clarified. This still needs to be done for other areas of the API ...
* A single monolithic man page for the ENGINE stuff. This is a roughGeoff Thorpe2002-08-041-0/+621
| | | | | first-cut but provides better documentation than having nothing on the ENGINE API.
* Fix "make install_docs" (and thus "make install").Geoff Thorpe2002-08-041-2/+2
|
* oops -- must use EVP_MD_size, not EVP_MD_block_sizeBodo Möller2002-08-031-3/+3
|
* oops, undo previous change (was just for testing)Bodo Möller2002-08-031-1/+1
|
* fix bn_expand2Bodo Möller2002-08-032-3/+4
|
* use bn_wexpand instead of bn_expand2 (the latter is not needed here,Bodo Möller2002-08-031-1/+1
| | | | | | and it does not yet work correctly) Submitted by: Douglas Stebila
* Fix typoDr. Stephen Henson2002-08-021-1/+1
|
* Fix the ASN1 sanity check: correct header lengthDr. Stephen Henson2002-08-022-4/+11
| | | | calculation and check overflow against LONG_MAX.
* disable Sun divison algorithm by defaultBodo Möller2002-08-022-4/+6
|
* fix bn_expand2Bodo Möller2002-08-021-8/+11
|
* optical changesBodo Möller2002-08-022-7/+8
|
* typoBodo Möller2002-08-021-1/+1
|
* remove obsolete part of commentBodo Möller2002-08-021-2/+0
|
* remove obsoleted disabled codeBodo Möller2002-08-021-10/+0
|
* Let BN_rand_range() abort with an error after 100 iterationsBodo Möller2002-08-022-0/+18
| | | | without success.
* updateBodo Möller2002-08-021-0/+29
|
* Change BN_mod_sqrt() so that it verifies that the input value isBodo Möller2002-08-023-20/+37
| | | | really the square of the return value.
* move GF2m tests to the endBodo Möller2002-08-021-8/+8
|
* Rename implementations of method functions so that they matchBodo Möller2002-08-0217-192/+173
| | | | | | | | | | | | | the new method names where _GF... suffixes have been removed. Revert changes to ..._{get/set}_Jprojective_coordinates_...: The current implementation for ECC over binary fields does not use projective coordinates, and if it did, it would not use Jacobian projective coordinates; so it's OK to use the ..._GFp prefix for all this. Add author attributions to some files so that it doesn't look as if Sun wrote all of this :-)
* typosBodo Möller2002-08-021-3/+3
|
* ec2_smpt.c must be listed in LIBSRCBodo Möller2002-08-021-2/+4
|
* there is no alternative EC_METHOD for curves over GF(2^m) (yet)Bodo Möller2002-08-021-2/+1
|
* add support for elliptic curves over binary fieldsBodo Möller2002-08-0217-122/+3258
| | | | | | | Submitted by: Duglas Stebila <douglas.stebila@sun.com>, Sheueling Chang <sheueling.chang@sun.com> (CHANGES entries by Bodo Moeller)
* extend curve list (additional curves over binary fields)Bodo Möller2002-08-021-21/+94
| | | | Submitted by: Sheueling Chang Shantz and Douglas Stebila (Sun Microsystems Laboratories)
* Binary field arithmetic contributed by Sun Microsystems.Bodo Möller2002-08-026-3/+1768
| | | | | | | | The 'OPENSSL_NO_SUN_DIV' default is still subject to change, so I didn't bother to finish the CHANGES entry yet. Submitted by: Douglas Stebila <douglas.stebila@sun.com>, Sheueling Chang <sheueling.chang@sun.com> (CHANGES entry by Bodo Moeller)
* Add more WAP/WTLS elliptic curve OIDs.Bodo Möller2002-08-025-6/+97
| | | | Submitted by: Douglas Stebila <douglas.stebila@sun.com>
* New error code ERR_R_DISABLEDBodo Möller2002-08-022-0/+2
| | | | Submitted by: Douglas Stebila <douglas.stebila@sun.com>
* get rid of OpenSSLDieBodo Möller2002-08-0214-54/+150
|
* make updateRichard Levitte2002-08-021-0/+193
|
* Certain flag macros were tested with #if instead if #ifdef...Richard Levitte2002-08-023-6/+6
|
* We don't need to find out which pod2man to use more than onceRichard Levitte2002-08-011-4/+5
|
* Don't try testing with parallell make, that will just fail.Richard Levitte2002-08-011-0/+8
| | | | PR: 175
* Add aix64-cc, and make sure that ar gets proper flags for 64-bit librariesRichard Levitte2002-08-012-3/+10
|
* make updateRichard Levitte2002-08-015-17/+39
|
* Add the CBC flag for cbc ciphersRichard Levitte2002-08-011-3/+3
|
* Avoid yet another name clash with libdes, and make the declaration consistentRichard Levitte2002-08-012-2/+7
| | | | with the definition.
* Make it possible to load keys from stdin, and restore thatRichard Levitte2002-08-0113-34/+50
| | | | | functionality in the programs that had that before. Part fo PR 164
* OCSP and KRB5 Makefil.ssl should be consistent with all the othersRichard Levitte2002-08-012-10/+10
|
* Linux on s390 really knows about loading dynamically.Richard Levitte2002-08-011-2/+2
| | | | PR: 183
* Cut'n'paste error with other reposnder certificates cleared.Richard Levitte2002-08-011-2/+2
| | | | PR: 190
* If CRYPTO_realloc() is called with a NULL pointer, have it callRichard Levitte2002-08-011-0/+3
| | | | | OPENSSL_malloc(). PR: 187
* If the email address is moved from the subject to the subject alternate name,Richard Levitte2002-07-311-4/+3
| | | | | | the subject in the certificate would differ from the subject in the index file, which has quite bad concequences. PR: 180
* Make sure to use $(MAKE) everywhere instead of make.Richard Levitte2002-07-313-3/+3
| | | | Part of PR 181
* ln -f -s doesn't always work, so do a rm -f followed by a ln -s.Richard Levitte2002-07-311-1/+2
| | | | Part of PR 181
* The version of the shared library should, for now, reflect the versionRichard Levitte2002-07-311-1/+1
| | | | | of OpenSSL. Part of PR 181.
* Typo.Lutz Jänicke2002-07-301-1/+1
| | | | | | Submitted by: Jeffrey Altman <jaltman@columbia.edu> Reviewed by: PR: 169