- Nov 02, 2000
-
-
Richard Levitte authored
load the "external" built-in engines (those that require DSO). This makes linking with libdl or other dso libraries non-mandatory. Change 'openssl engine' accordingly. Change the engine header files so some declarations (that differed at that!) aren't duplicated, and make sure engine_int.h includes engine.h. That way, there should be no way of missing the needed info.
-
Richard Levitte authored
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.
-
Richard Levitte authored
-
Bodo Möller authored
fopen(NULL).
-
- Nov 01, 2000
-
-
Richard Levitte authored
-
Richard Levitte authored
Submitted by Albert Chin-A-Young <china@thewrittenword.com>
-
- Oct 31, 2000
-
-
Richard Levitte authored
Submitted by Damien Miller <djm@mindrot.org> This change has been CC:ed to crypt@bxa.doc.gov
-
Richard Levitte authored
little-endian MIPS. Submitted by Ralf Baechle <ralf@uni-koblenz.de>
-
- Oct 28, 2000
-
-
Richard Levitte authored
-
- Oct 27, 2000
-
-
Richard Levitte authored
-
- Oct 26, 2000
-
-
Ulf Möller authored
-
Richard Levitte authored
At the same time, add VMS support for Rijndael.
-
Geoff Thorpe authored
-
- Oct 21, 2000
-
-
Richard Levitte authored
-
Richard Levitte authored
N.B.: This has not been tested at all, that's my next step.
-
Richard Levitte authored
-
- Oct 20, 2000
-
-
Dr. Stephen Henson authored
causes MASM to complain and not produce valid debug info. Hopefully this wont break anything else... Also fix typo in e_rd.c
-
- Oct 14, 2000
-
-
Dr. Stephen Henson authored
-
Richard Levitte authored
make update done.
-
- Oct 13, 2000
-
-
Richard Levitte authored
- 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.
-
- Oct 12, 2000
-
-
Dr. Stephen Henson authored
-
- Oct 06, 2000
-
-
Dr. Stephen Henson authored
-
- Oct 04, 2000
-
-
Dr. Stephen Henson authored
Add support for X509_NAME_print_ex() in req. Initial code for cutomizable X509 print routines.
-
- Oct 01, 2000
-
-
Richard Levitte authored
-
- Sep 26, 2000
-
-
Bodo Möller authored
-
- Sep 25, 2000
-
-
Richard Levitte authored
-
- Sep 24, 2000
-
-
Richard Levitte authored
-
Richard Levitte authored
-
- Sep 23, 2000
-
-
Ulf Möller authored
-
- Sep 22, 2000
-
-
Bodo Möller authored
-
Bodo Möller authored
-
Dr. Stephen Henson authored
Only use the new informational verify codes if we specifically ask for them. Fix typo in docs.
-
- Sep 21, 2000
-
-
Dr. Stephen Henson authored
-
- Sep 20, 2000
-
-
Richard Levitte authored
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.
-
- Sep 19, 2000
-
-
Bodo Möller authored
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 :-)
-
Bodo Möller authored
-
Bodo Möller authored
make disabled code slightly more correct (this does not solve the problem though).
-
- Sep 18, 2000
-
-
Dr. Stephen Henson authored
-
- Sep 17, 2000
-
-
Bodo Möller authored
(it's similar to the shutdown(..., SHUT_WR) system call for sockets).
-
- Sep 15, 2000
-
-
Richard Levitte authored
-