aboutsummaryrefslogtreecommitdiffstats
path: root/CHANGES
Commit message (Collapse)AuthorAgeFilesLines
* 'openssl engine' can now list engine capabilities. The currentRichard Levitte2000-11-021-0/+3
| | | | | | | implementation is contained in the application, and the capability string building part should really be part of the engine library. This is therefore an experimental hack, and will be changed in the near future.
* Better error reporting in 'openssl engine'Richard Levitte2000-11-021-0/+3
|
* Never call load_dh_param(NULL) because this leads to an illegalBodo Möller2000-11-021-0/+3
| | | | fopen(NULL).
* Add application to enumerate, list and test engines with.Richard Levitte2000-11-011-0/+4
|
* Add support for shared libraries under Irix.Richard Levitte2000-11-011-0/+3
| | | | Submitted by Albert Chin-A-Young <china@thewrittenword.com>
* Improvements to openssl.spec.Richard Levitte2000-10-311-0/+4
| | | | | Submitted by Damien Miller <djm@mindrot.org> This change has been CC:ed to crypt@bxa.doc.gov
* Add configuration option to build on Linux on both big-endian andRichard Levitte2000-10-311-0/+4
| | | | | little-endian MIPS. Submitted by Ralf Baechle <ralf@uni-koblenz.de>
* Document the change.Richard Levitte2000-10-281-0/+4
|
* Document the OCSP addition.Richard Levitte2000-10-271-0/+3
|
* .Ulf Möller2000-10-261-1/+1
|
* Merge the engine branch into the main trunk. All conflicts resolved.Richard Levitte2000-10-261-0/+10
| | | | At the same time, add VMS support for Rijndael.
* Add a note about the recent DSO changes in CHANGES.BEFORE_engineGeoff Thorpe2000-10-261-0/+6
|
* DocumentRichard Levitte2000-10-211-0/+3
|
* Add what's needed to get shared libraries on HP-UX.Richard Levitte2000-10-211-0/+3
| | | | N.B.: This has not been tested at all, that's my next step.
* Document the change to NCONF.Richard Levitte2000-10-211-0/+11
|
* Fix for bug (?) in assembly language routines for SHA1. ThisDr. Stephen Henson2000-10-201-0/+6
| | | | | | | causes MASM to complain and not produce valid debug info. Hopefully this wont break anything else... Also fix typo in e_rd.c
* Fix for typo in certificate directory lookup code.Dr. Stephen Henson2000-10-141-0/+3
|
* The experimental Rijndael code moved to the main trunk.Richard Levitte2000-10-141-0/+3
| | | | make update done.
* Rework the system to generate shared libraries:Richard Levitte2000-10-131-0/+15
| | | | | | | | | | | | | | - Make note of the expected extension for the shared libraries and if there is a need for symbolic links from for example libcrypto.so.0 to libcrypto.so.0.9.7. There is extended info in Configure for that. - Make as few rebuilds of the shared libraries as possible. - Still avoid linking the OpenSSL programs with the shared libraries. - When installing, install the shared libraries separately from the static ones.
* Make non blocking I/O work for accept BIOs.Dr. Stephen Henson2000-10-121-0/+7
|
* More code for X509_print_ex() support.Dr. Stephen Henson2000-10-061-2/+4
|
* Global DirectoryString mask fix.Dr. Stephen Henson2000-10-041-0/+5
| | | | | | Add support for X509_NAME_print_ex() in req. Initial code for cutomizable X509 print routines.
* Document...Richard Levitte2000-10-011-0/+3
|
* Note read_ahead-flag related fixes.Bodo Möller2000-09-261-0/+8
|
* Document the change.Richard Levitte2000-09-251-1/+4
|
* Update the status and version number to 0.9.7-dev.Richard Levitte2000-09-241-0/+4
|
* Time to build the release. Bump the version info accordingly.Richard Levitte2000-09-241-1/+1
|
* Add some missing info.Ulf Möller2000-09-231-1/+5
|
* typoBodo Möller2000-09-221-1/+1
|
* Avoid protocol rollback.Bodo Möller2000-09-221-0/+10
|
* Only use the new informational verify codes if weDr. Stephen Henson2000-09-221-0/+8
| | | | | | specifically ask for them. Fix typo in docs.
* Fix ASN1_TYPE bug.Dr. Stephen Henson2000-09-211-0/+12
|
* On VMS, stdout may very well lead to a file that is written to in aRichard Levitte2000-09-201-0/+16
| | | | | | | | | | | | | | | | | record-oriented fashion. That means that every write() will write a separate record, which will be read separately by the programs trying to read from it. This can be very confusing. The solution is to put a BIO filter in the way that will buffer text until a linefeed is reached, and then write everything a line at a time, so every record written will be an actual line, not chunks of lines and not (usually doesn't happen, but I've seen it once) several lines in one record. Voila, BIO_f_linebuffer() is born. Since we're so close to release time, I'm making this VMS-only for now, just to make sure no code is needlessly broken by this. After the release, this BIO method will be enabled on all other platforms as well.
* Totally remove the supposedly 'faster' variant inBodo Möller2000-09-191-1/+1
| | | | | | | | | | | | | | | BN_mod_mul_montgomery, which calls bn_sqr_recursive without much preparation. bn_sqr_recursive requires the length of its argument to be a power of 2, which is not always the case here. There's no reason for not using BN_sqr -- if a simpler approach to squaring made sense, then why not change BN_sqr? (Using BN_sqr should also speed up DH where g is chosen such that it becomes small [e.g., 2] when converted to Montgomery representation.) Case closed :-)
* Clarification about Montgomery problemBodo Möller2000-09-191-1/+3
|
* Document BN_mod_mul_montgomery bug;Bodo Möller2000-09-191-0/+4
| | | | | make disabled code slightly more correct (this does not solve the problem though).
* Work around for Netscape PKCS#7 signedData bug.Dr. Stephen Henson2000-09-181-0/+5
|
* Rename new BIO_set_shutdown_wr macro to just BIO_shutdown_wrBodo Möller2000-09-171-0/+3
| | | | | (it's similar to the shutdown(..., SHUT_WR) system call for sockets).
* A DSO method for VMS was missing, and I had the code lying around...Richard Levitte2000-09-151-0/+3
|
* Bug fix: Montgomery multiplication could produce results with the wrongUlf Möller2000-09-141-0/+4
| | | | sign.
* Add Damien Miller's RPM specification file with a few modifications.Richard Levitte2000-09-141-0/+8
|
* Add a number of documentation files, mostly for SSL routines, but alsoRichard Levitte2000-09-141-0/+3
| | | | | for a few BIO routines. Submitted by Lutz Jaenicke <Lutz.Jaenicke@aet.TU-Cottbus.DE>
* Add a configuration for Sony News 4.Richard Levitte2000-09-141-0/+3
| | | | Submitted by NAKAJI Hiroyuki <nakaji@tutrp.tut.ac.jp>
* The other log message should have read "Note the DSA change".Ulf Möller2000-09-131-1/+1
|
* Not the DSA change.Ulf Möller2000-09-131-0/+4
|
* New SSL API mode 'SSL_MODE_AUTO_RETRY', which disables the defaultBodo Möller2000-09-121-0/+9
| | | | behaviour that SSL_read may result in SSL_ERROR_WANT_READ.
* Document an old change.Ben Laurie2000-09-111-0/+4
|
* Marin Kraemer <Martin.Kraemer@MchP.Siemens.De> sent us patches to makeRichard Levitte2000-09-101-0/+4
| | | | the OpenSSL commands x50 and req work better on a EBCDIC system.
* Two new PKCS#12 demo programs.Dr. Stephen Henson2000-09-071-0/+5
| | | | | | Update PKCS12_parse(). Make the keyid in certificate aux info more usable.
* Ugh, BIO_find_type() cannot be passed a NULL.Dr. Stephen Henson2000-09-071-0/+4
| | | | | | | Fix doc example, and fix BIO_find_type(). Fix PKCS7_verify(). It was using 'i' for both the loop variable and the verify return value.