Richard Levitte [Thu, 21 Sep 2000 07:15:52 +0000 (07:15 +0000)]
I'm using GNU tar...
Richard Levitte [Thu, 21 Sep 2000 07:02:27 +0000 (07:02 +0000)]
Changes by Jeffrey Altman <jaltman@columbia.edu> to make RAND_poll()
work better in Win32. Verified by zhu qun-ying <qyzhu@krdl.org.sg>.
Richard Levitte [Thu, 21 Sep 2000 06:46:15 +0000 (06:46 +0000)]
Clarifications and new documents.
Submitted by Lutz Jaenicke <Lutz.Jaenicke@aet.TU-Cottbus.DE>
Richard Levitte [Thu, 21 Sep 2000 05:42:01 +0000 (05:42 +0000)]
Portability patch for HP MPE/iX. Submitted by Mark Bixby <mark_bixby@hp.com>
Richard Levitte [Wed, 20 Sep 2000 16:55:26 +0000 (16:55 +0000)]
New documents. Lutz Jaenicke <Lutz.Jaenicke@aet.TU-Cottbus.DE>
Richard Levitte [Wed, 20 Sep 2000 16:52:05 +0000 (16:52 +0000)]
Mistakes corrected. Lutz Jaenicke <Lutz.Jaenicke@aet.TU-Cottbus.DE>
Richard Levitte [Wed, 20 Sep 2000 15:52:26 +0000 (15:52 +0000)]
Add news and a description of the ENGINE part and how it's currently
distributed.
Bodo Möller [Wed, 20 Sep 2000 15:22:02 +0000 (15:22 +0000)]
Additions for 0.9.6.
Richard Levitte [Wed, 20 Sep 2000 15:15:37 +0000 (15:15 +0000)]
Reports about a few old systems.
Reported by Bernhard Simon <bs@bsws.zid.tuwien.ac.at>
Richard Levitte [Wed, 20 Sep 2000 15:10:16 +0000 (15:10 +0000)]
AIX doesn't like ftime() either.
Richard Levitte [Wed, 20 Sep 2000 14:47:04 +0000 (14:47 +0000)]
Wrong variable used. It's funny how some bugs take a long time
getting triggered...
Richard Levitte [Wed, 20 Sep 2000 13:55:50 +0000 (13:55 +0000)]
On VMS, stdout may very well lead to a file that is written to in a
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.
Richard Levitte [Wed, 20 Sep 2000 13:32:54 +0000 (13:32 +0000)]
make update
Ulf Möller [Wed, 20 Sep 2000 03:42:15 +0000 (03:42 +0000)]
ispell.
Ulf Möller [Wed, 20 Sep 2000 03:28:54 +0000 (03:28 +0000)]
Malloc() -> OPENSSL_malloc() etc.
Ulf Möller [Wed, 20 Sep 2000 03:25:33 +0000 (03:25 +0000)]
The RSA patent will have expired when the next version is released...
Ulf Möller [Wed, 20 Sep 2000 03:24:36 +0000 (03:24 +0000)]
ispell.
Dr. Stephen Henson [Wed, 20 Sep 2000 00:50:25 +0000 (00:50 +0000)]
Add docs for X509_get_ext_d2i() function.
Add some major changes to NEWS...
Bodo Möller [Tue, 19 Sep 2000 23:25:00 +0000 (23:25 +0000)]
Totally remove the supposedly 'faster' variant in
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 :-)
Richard Levitte [Tue, 19 Sep 2000 23:14:42 +0000 (23:14 +0000)]
BSDI only supports ftime() through libcompat, which means it's
better not to use it.
Richard Levitte [Tue, 19 Sep 2000 23:12:57 +0000 (23:12 +0000)]
Document SSL_library_init() and it's aliases. Lutz Jaenicke <Lutz.Jaenicke@aet.TU-Cottbus.DE>
Richard Levitte [Tue, 19 Sep 2000 23:11:42 +0000 (23:11 +0000)]
Type correction. Lutz Jaenicke <Lutz.Jaenicke@aet.TU-Cottbus.DE>
Richard Levitte [Tue, 19 Sep 2000 23:10:32 +0000 (23:10 +0000)]
Extend the docs on setting the cipher list. Lutz Jaenicke <Lutz.Jaenicke@aet.TU-Cottbus.DE>
Bodo Möller [Tue, 19 Sep 2000 23:06:14 +0000 (23:06 +0000)]
Clarification about Montgomery problem
Ulf Möller [Tue, 19 Sep 2000 20:52:30 +0000 (20:52 +0000)]
Note about contribtions from the US
Bodo Möller [Tue, 19 Sep 2000 18:02:15 +0000 (18:02 +0000)]
Document BN_mod_mul_montgomery bug;
make disabled code slightly more correct (this does not solve
the problem though).
Dr. Stephen Henson [Tue, 19 Sep 2000 17:51:11 +0000 (17:51 +0000)]
Fix a typo in apps/pkcs12.c which was using the wrong part of
ASN1_TYPE (though they are both ASN1_STRING so it didn't cause
any problems).
Make 'siglen' an int in apps/dgst.c so we can check the return
value of BIO_read() etc.
Bodo Möller [Tue, 19 Sep 2000 17:21:52 +0000 (17:21 +0000)]
Disable buggy code variant in BN_mod_mul_montgomery that was enabled
in 0.9.6-beta1 and 0.9.6-beta2 and caused the BN_mont_exp_mont_word()
failure (bug report "openssh 2.2.0p1 fails with openssl 0.9.6-beta1").
Richard Levitte [Tue, 19 Sep 2000 16:14:47 +0000 (16:14 +0000)]
It seems like all HP-UX are successes as soon as the -ldl vs. -ldld
quirk is fixed.
Richard Levitte [Tue, 19 Sep 2000 16:13:38 +0000 (16:13 +0000)]
FreeBSD only supports ftime() through libcompat, which means it's
better not to use it.
Richard Levitte [Tue, 19 Sep 2000 15:55:43 +0000 (15:55 +0000)]
A few more HP-UX reports. Reported by Kevin Steves <stevesk@sweden.hp.com>
Richard Levitte [Tue, 19 Sep 2000 06:15:33 +0000 (06:15 +0000)]
Reorder the Blowfish documentation so the low-level routines do not get so prominent, and make sure to say out loud what they expect.
Dr. Stephen Henson [Mon, 18 Sep 2000 23:05:33 +0000 (23:05 +0000)]
Clarify the BIO_seek() mess and related issues.
Buffering BIO docs.
Ulf Möller [Mon, 18 Sep 2000 22:58:02 +0000 (22:58 +0000)]
ispell
Ulf Möller [Mon, 18 Sep 2000 22:03:37 +0000 (22:03 +0000)]
Note the BN_mod_exp_word bug. (Markus Friedl provided a test program.)
Richard Levitte [Mon, 18 Sep 2000 16:53:05 +0000 (16:53 +0000)]
A couple more reports.
Richard Levitte [Mon, 18 Sep 2000 16:52:05 +0000 (16:52 +0000)]
ftime() is not supported on SGI.
Reported by Steve Robb <steve@eu.c2.net>
Richard Levitte [Mon, 18 Sep 2000 16:42:30 +0000 (16:42 +0000)]
New documentation about things related to SSL_CIPHER. Submitted by Lutz Jaenicke <Lutz.Jaenicke@aet.TU-Cottbus.DE>
Richard Levitte [Mon, 18 Sep 2000 16:34:41 +0000 (16:34 +0000)]
HP-UX 64-bit has dlfcn, so let's use that instead of the old dl.
Richard Levitte [Mon, 18 Sep 2000 16:17:41 +0000 (16:17 +0000)]
A few more reports
Richard Levitte [Mon, 18 Sep 2000 16:07:20 +0000 (16:07 +0000)]
No engine stuff in the main trunk.
Richard Levitte [Mon, 18 Sep 2000 13:35:05 +0000 (13:35 +0000)]
A few more reports
Dr. Stephen Henson [Mon, 18 Sep 2000 12:30:57 +0000 (12:30 +0000)]
Work around for Netscape PKCS#7 signedData bug.
Richard Levitte [Mon, 18 Sep 2000 11:55:12 +0000 (11:55 +0000)]
A few more reports
Richard Levitte [Mon, 18 Sep 2000 11:51:07 +0000 (11:51 +0000)]
Going through performance statistics sometimes generates an exception,
so disable that part.
Reported by Jeffrey Altman <jaltman@columbia.edu>
Richard Levitte [Mon, 18 Sep 2000 11:44:40 +0000 (11:44 +0000)]
cyclecount is only used when __GNUC__ isn't defined.
Richard Levitte [Mon, 18 Sep 2000 11:24:32 +0000 (11:24 +0000)]
Disable the net statistics gathering code, since different compilers
disagree on the proper syntax and type names.
Richard Levitte [Mon, 18 Sep 2000 09:36:25 +0000 (09:36 +0000)]
HP-UX didn't go through
Richard Levitte [Mon, 18 Sep 2000 09:34:05 +0000 (09:34 +0000)]
Typo in the added hpux targets. -ldl should be -ldld.
Richard Levitte [Mon, 18 Sep 2000 09:21:01 +0000 (09:21 +0000)]
The test status as it has been reported so far
Richard Levitte [Mon, 18 Sep 2000 08:40:55 +0000 (08:40 +0000)]
Unless we cast, thorough compilers will complain
Richard Levitte [Mon, 18 Sep 2000 01:48:38 +0000 (01:48 +0000)]
Jeffrey Altman reminds us to initialize some variables and ercommends the use of LOadLibrary instead of GetModuleHandle
Richard Levitte [Sun, 17 Sep 2000 22:36:25 +0000 (22:36 +0000)]
Declare the availability of beta 2 in STATUS.
Richard Levitte [Sun, 17 Sep 2000 20:19:44 +0000 (20:19 +0000)]
A new beta is being released. Change the version numbers
accordingly.
Richard Levitte [Sun, 17 Sep 2000 20:18:06 +0000 (20:18 +0000)]
make update
Richard Levitte [Sun, 17 Sep 2000 20:04:42 +0000 (20:04 +0000)]
A patch from HP for better performance.
Submitted by Kevin Steves <ks@hp.se> 3 months ago...
Richard Levitte [Sun, 17 Sep 2000 19:20:17 +0000 (19:20 +0000)]
Restore the descriptions to conform with the rest of the
documentation. We'll work on better documents after the release of
0.9.6.
Richard Levitte [Sun, 17 Sep 2000 18:42:13 +0000 (18:42 +0000)]
Jeffrey Altman <jaltman@columbia.edu> sent me a patch that fixes the
problems with GetCursorInfo, but also adds network statistics and
performance statistics where available.
Richard Levitte [Sun, 17 Sep 2000 18:21:27 +0000 (18:21 +0000)]
Use sk_*_new_null() instead of sk_*_new(NULL), since that takes care
of complaints from the compiler about data pointers and function
pointers not being compatible with each other.
Richard Levitte [Sun, 17 Sep 2000 18:08:38 +0000 (18:08 +0000)]
siglen is unsigned, so comparing it to less than 0 is silly, and
generates a compiler warning with Compaq C.
Richard Levitte [Sun, 17 Sep 2000 15:45:43 +0000 (15:45 +0000)]
Oops, no engine in the main trunk.
Richard Levitte [Sun, 17 Sep 2000 15:41:24 +0000 (15:41 +0000)]
Tell users that a rewrite might be a good idea.
Richard Levitte [Sun, 17 Sep 2000 14:46:09 +0000 (14:46 +0000)]
Some platforms define NULL as ((void *)0). Unfortunately, a void*
can't be used as a function pointer according the the standards. Use
a 0 instead and there will be no trouble.
Richard Levitte [Sun, 17 Sep 2000 14:44:35 +0000 (14:44 +0000)]
A couple of more names need to be shortened for VMS on VAX.
Richard Levitte [Sun, 17 Sep 2000 14:42:46 +0000 (14:42 +0000)]
Make sure Compaq C doesn'r complain about dollars, and go around the
incompatibility between function and data pointers.
Richard Levitte [Sun, 17 Sep 2000 11:57:33 +0000 (11:57 +0000)]
Inform the VMS people that RSAref is no longer needed
Richard Levitte [Sun, 17 Sep 2000 11:56:53 +0000 (11:56 +0000)]
VMS didn't work out too well...
Bodo Möller [Sun, 17 Sep 2000 01:23:53 +0000 (01:23 +0000)]
Rename new BIO_set_shutdown_wr macro to just BIO_shutdown_wr
(it's similar to the shutdown(..., SHUT_WR) system call
for sockets).
Richard Levitte [Sat, 16 Sep 2000 23:32:33 +0000 (23:32 +0000)]
Move text that isn't really descriptions of the functions in the page
to the NOTES section, and add references to the functions mentioned
(and perhaps a few more).
Richard Levitte [Sat, 16 Sep 2000 23:31:03 +0000 (23:31 +0000)]
Add BIO_seek() and BIO_tell() to the BIO control functions manual.
Dr. Stephen Henson [Sat, 16 Sep 2000 21:21:01 +0000 (21:21 +0000)]
New macro BIO_set_shutdown_wr().
Update docs.
Bodo Möller [Sat, 16 Sep 2000 16:05:34 +0000 (16:05 +0000)]
SSL => TLS/SSL
Bodo Möller [Sat, 16 Sep 2000 16:02:35 +0000 (16:02 +0000)]
TLS => TLS/SSL
Bodo Möller [Sat, 16 Sep 2000 16:00:38 +0000 (16:00 +0000)]
Change spelling back to "behaviour" and "flavour" instead of the
American variants.
Bodo Möller [Sat, 16 Sep 2000 15:55:57 +0000 (15:55 +0000)]
Clarification.
Ulf Möller [Sat, 16 Sep 2000 15:39:28 +0000 (15:39 +0000)]
ispell and some other nit-picking
Dr. Stephen Henson [Sat, 16 Sep 2000 12:01:38 +0000 (12:01 +0000)]
Remove redundant manpages and references to them.
Ulf Möller [Sat, 16 Sep 2000 06:04:43 +0000 (06:04 +0000)]
add links to the new BIO and SSL manpages to make them visible on the web.
Dr. Stephen Henson [Sat, 16 Sep 2000 01:32:42 +0000 (01:32 +0000)]
BIO_f_ssl() docs.
Richard Levitte [Fri, 15 Sep 2000 22:16:41 +0000 (22:16 +0000)]
Compile all dso files on VMS as well.
Richard Levitte [Fri, 15 Sep 2000 22:13:38 +0000 (22:13 +0000)]
'make update'
Richard Levitte [Fri, 15 Sep 2000 22:12:53 +0000 (22:12 +0000)]
Make sure dso_vms.c compiles on other operating systems as well.
Richard Levitte [Fri, 15 Sep 2000 21:22:50 +0000 (21:22 +0000)]
A DSO method for VMS was missing, and I had the code lying around...
Richard Levitte [Fri, 15 Sep 2000 19:37:14 +0000 (19:37 +0000)]
Move up inclusion of conf.h, so non-MONOLITH programs can benefit from
it as well, especially in apps.c.
Dr. Stephen Henson [Fri, 15 Sep 2000 17:31:47 +0000 (17:31 +0000)]
Accept BIO docs.
Richard Levitte [Fri, 15 Sep 2000 15:26:04 +0000 (15:26 +0000)]
'make update'
Richard Levitte [Fri, 15 Sep 2000 13:59:30 +0000 (13:59 +0000)]
Add a flag for OpenVMS.
Richard Levitte [Fri, 15 Sep 2000 11:33:14 +0000 (11:33 +0000)]
Later, Jeffrey changed his mind. Apparently, GetCursorInfo exists but
doesn't quite work on WinNT 4 earlier than SP6. It works fine on
Windows 98 and Windows 2000.
I'm disabling it for now. What's really needed is some kind of check
to see if GetCursorInfo is safe to call, or alternatively, GetCursor
or GetCursorPos could be used, according to Jeffrey.
Ulf Möller [Fri, 15 Sep 2000 04:20:40 +0000 (04:20 +0000)]
Jeffrey Altman points out that GetQueueStatus() crashes on NT.
Dr. Stephen Henson [Fri, 15 Sep 2000 00:28:47 +0000 (00:28 +0000)]
Update BIO_s_connect().
Bodo Möller [Thu, 14 Sep 2000 22:09:55 +0000 (22:09 +0000)]
Some small clarifications.
Richard Levitte [Thu, 14 Sep 2000 21:23:28 +0000 (21:23 +0000)]
In the name section, all the functions described shoud be enumerated.
This will also make it much simpler to generate softlinks name like
each function to man-pages containing the info.
Richard Levitte [Thu, 14 Sep 2000 21:22:19 +0000 (21:22 +0000)]
Update the info on version numbering
Richard Levitte [Thu, 14 Sep 2000 20:24:56 +0000 (20:24 +0000)]
BIO_seed() and BIO_tell() were documented in two other documents,
which is redundant. They are now in their own document.
Also, in the name section, all the functions described shoud be
enumerated. This will also make it much simpler to generate softlinks
name like each function to man-pages containing the info.
Richard Levitte [Thu, 14 Sep 2000 20:23:17 +0000 (20:23 +0000)]
BIO_seed() and BIO_tell() were documented in two other documents,
which is redundant. Instead, move them to their own page.
Richard Levitte [Thu, 14 Sep 2000 20:22:14 +0000 (20:22 +0000)]
Items without a =over and a =back are ignored.
Dr. Stephen Henson [Thu, 14 Sep 2000 18:55:39 +0000 (18:55 +0000)]
BIO_s_bio() manual page detailing BIO pair.
This combines several manual pages provided by
Lutz Jaenicke <Lutz.Jaenicke@aet.TU-Cottbus.DE>,
various comments by Bodo to the lists and a bit
of source examination by me.
Ulf Möller [Thu, 14 Sep 2000 18:37:53 +0000 (18:37 +0000)]
Bug fix: Montgomery multiplication could produce results with the wrong
sign.
Richard Levitte [Thu, 14 Sep 2000 18:16:25 +0000 (18:16 +0000)]
Remove engine stuff that was erroneously put in the main trunk.
Richard Levitte [Thu, 14 Sep 2000 15:28:44 +0000 (15:28 +0000)]
Add Damien Miller's RPM specification file with a few modifications.