aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Add docs for BIO_find_type() and friends.Dr. Stephen Henson2000-09-074-2/+102
| | | | | Added function BIO_next() otherwise you can't traverse a chain without accessing BIO internals.
* 'make update'Richard Levitte2000-09-0731-602/+796
|
* *.num rewitten to include the extra information.Richard Levitte2000-09-072-2046/+2051
|
* Major hack of mkdef.pl. There should be no more need to redo theRichard Levitte2000-09-072-177/+507
| | | | | | | | | process when some symbols are missing. Instead, all needed info is saved in the .num files, including what conditions are needed for a specific symbol to exist. This was needed for the work I'm doing with shared libraries under VMS.
* It's not just VMS that needs some symbols to be hacked. Let'sRichard Levitte2000-09-078-38/+51
| | | | | centralise those hacks in crypto/symhacks.h and use it everywhere it's needed.
* Another thing I'm working on.Richard Levitte2000-09-071-1/+2
|
* clarification (source/sink BIOs are usually *both* source and sink)Bodo Möller2000-09-071-1/+1
|
* Change the printing mahine used by BIO_printf() and friends so it canRichard Levitte2000-09-071-160/+89
| | | | | | | | | | handle an externally provided "static" buffer as well a a dynamic buffer. The "static" buffer is filled first, but if overflowed, the dynamic buffer is used instead, being allocated somewhere i the heap. This combines the benefits of putting the output in a preallocated buffer (on the stack, for example) and in a buffer that grows somewhere in the heap.
* Some BIO docs, incomplete, more to follow.Dr. Stephen Henson2000-09-073-0/+176
| | | | | Hmmm I didn't realise BIO_pop() did that: isn't source wonderful?
* Use name ...-whatever-solaris2 instead of ...-sun-solaris2Bodo Möller2000-09-061-17/+6
| | | | (the middle string describes the architecture).
* Get rid of ASN1_UTCTIME_get, which cannot work with time_tBodo Möller2000-09-063-57/+122
| | | | | | | return type (on platforms where time_t is a 32 bit value). New function ASN1_UTCTIME_cmp_time_t as a replacement for use in apps/x509.c.
* See RSA Security's press release atBodo Möller2000-09-062-15/+5
| | | | | http://www.rsasecurity.com/news/pr/000906-1.html (September 6, 2000): "RSA Security Releases RSA Encryption Algorithm into Public Domain"
* Another superfluous pair of parentheses.Bodo Möller2000-09-061-1/+1
|
* Another round of indentation changes: Position braces consistently,Bodo Möller2000-09-062-87/+93
| | | | | | | | add some whitespace for 'if ()', 'for ()', 'while ()' to distinguish keywords from function names, and finally remove parens around return values (why be stingy with whitespace but fill the source code with an abundance of parentheses that are not needed to structure expressions for readability?).
* More indentation consistency: for (), while (), if (), return ()Bodo Möller2000-09-061-50/+50
| | | | | | usually get a space between keyword and opening paranthesis so that they don't look like function calls, where no space is used.
* Fix X509_STORE_CTX_init. Make indentation more consistent. Dump core less ↵Bodo Möller2000-09-062-54/+86
| | | | often.
* 'make update'Bodo Möller2000-09-062-4/+14
|
* Changes for QNX: there is no thread support, and the previousBodo Möller2000-09-062-9/+8
| | | | configuration only worked with no-asm.
* typoBodo Möller2000-09-061-1/+1
|
* Add OAEP. Seed the PRNG.Bodo Möller2000-09-062-5/+12
|
* updateBodo Möller2000-09-061-11/+11
|
* Add rsautl.Bodo Möller2000-09-061-1/+6
|
* Clarification for SSL_ERROR_ZERO_RETURNBodo Möller2000-09-061-1/+3
|
* Fix typo in rsautl.Dr. Stephen Henson2000-09-056-48/+262
| | | | | | Add support for settable verify time in X509_verify_cert(). Document rsautl utility.
* Ignore executable.Ben Laurie2000-09-051-0/+1
|
* Handle WANT_READ more correctly (thanks to Bodo).Ben Laurie2000-09-051-5/+24
|
* *BIG* verify code reorganisation.Dr. Stephen Henson2000-09-0513-209/+515
| | | | | | | | | | | | | | | | | The old code was painfully primitive and couldn't handle distinct certificates using the same subject name. The new code performs several tests on a candidate issuer certificate based on certificate extensions. It also adds several callbacks to X509_VERIFY_CTX so its behaviour can be customised. Unfortunately some hackery was needed to persuade X509_STORE to tolerate this. This should go away when X509_STORE is replaced, sometime... This must have broken something though :-(
* Distinguish between assertions and conditions that should cause death.Ben Laurie2000-09-051-5/+10
|
* Keep a not of original encoding in certificate requests.Dr. Stephen Henson2000-09-057-11/+49
| | | | Add new option to PKCS7_sign to exclude S/MIME capabilities.
* Mention fix in bio_lib.c.Bodo Möller2000-09-051-0/+2
|
* Increase print buffer (10K instead of just 2K).Bodo Möller2000-09-051-1/+1
|
* Ignore Makefile.saveBodo Möller2000-09-051-0/+1
|
* Remove silly test for b->references at the end of BIO_write:Bodo Möller2000-09-051-9/+3
| | | | | | If some other thread deletes the BIO that one thread needs for BIO_write, then there's a lot of trouble anyway; there's nothing special about calling the callback.
* ConsistencyBodo Möller2000-09-043-2/+7
|
* Use consistent indentation,Bodo Möller2000-09-041-61/+68
|
* Avoid abort() throughout the library, except when preprocessorBodo Möller2000-09-0419-75/+196
| | | | symbols for debugging are defined.
* Fix for BN_mul_word(a, 0).Bodo Möller2000-09-041-4/+9
|
* -Wall insists that main return an int.Bodo Möller2000-09-041-1/+3
|
* Include MD4 in documentation.Bodo Möller2000-09-041-3/+3
|
* Tell CVS to ignore 'lib'.Bodo Möller2000-09-041-0/+1
|
* Add 'rsautl' low level RSA utility.Dr. Stephen Henson2000-09-0312-9/+432
| | | | | | | | Add DER public key routines. Add -passin argument to 'ca' utility. Document sign and verify options to dgst.
* Undo change from 1.7 to 1.8:Bodo Möller2000-09-011-4/+2
| | | | | | Returning -1 for an attempt to read from an empty buffer is empty is not an error that should be signalled via the error queue, it's a 'retry read' condition and is signalled as such.
* Use C syntax, not FORTRAN or whatever that was :-)Bodo Möller2000-09-011-5/+9
|
* QNX 4 support.Bodo Möller2000-09-015-0/+35
|
* -N option to diff is not essential, and mentioning it is unnecessarilyBodo Möller2000-09-011-1/+1
| | | | confusing to people whose diff doesn't implement it.
* Add demo state machine.Ben Laurie2000-08-303-0/+383
|
* Fix typo in i2d_ASN1_ENUMERATEDDr. Stephen Henson2000-08-304-16/+181
| | | | | | | Fix bug in read only memory BIOs so BIO_reset() works. Add sign and verify options to dgst utility, need to update docs.
* Diagnose EOF on memory BIOs (or you just get mysterious errors with no errorBen Laurie2000-08-283-0/+6
| | | | message).
* Use the passed buffer in ERR_error_string!Ben Laurie2000-08-281-1/+1
|
* Change PKCS#7 test data to take account of removal ofDr. Stephen Henson2000-08-251-44/+44
| | | | indefinite length encoding.