openssl.git
21 years agoclean up new code for NIST primes
Bodo Möller [Mon, 28 Oct 2002 14:02:19 +0000 (14:02 +0000)]
clean up new code for NIST primes

create new lock CRYPTO_LOCK_BN to avoid race condition

21 years agofast reduction for NIST curves
Bodo Möller [Mon, 28 Oct 2002 13:23:24 +0000 (13:23 +0000)]
fast reduction for NIST curves

Submitted by: Nils Larsch

21 years agoremove superfluous code
Bodo Möller [Mon, 28 Oct 2002 13:19:08 +0000 (13:19 +0000)]
remove superfluous code

Submitted by: Nils Larsch

21 years agoMake sure toupper() is declared
Richard Levitte [Fri, 25 Oct 2002 09:51:45 +0000 (09:51 +0000)]
Make sure toupper() is declared

21 years agoExternal engines aren't in crypto/engine/ any more, so don't try to
Richard Levitte [Thu, 24 Oct 2002 19:15:30 +0000 (19:15 +0000)]
External engines aren't in crypto/engine/ any more, so don't try to
build them there.

A command procedure to build the external engines is on it's way.

21 years agomake update
Richard Levitte [Thu, 24 Oct 2002 19:12:10 +0000 (19:12 +0000)]
make update

21 years agoFor the mkdef.pl to recognise if the "external" engines are inserted
Richard Levitte [Thu, 24 Oct 2002 19:09:03 +0000 (19:09 +0000)]
For the mkdef.pl to recognise if the "external" engines are inserted
into libcrypto, we need the "algorithm" STATIC_ENGINE.

21 years agoThere's a name clash between OpenSSL and RSAref. Since this engine handles
Richard Levitte [Thu, 24 Oct 2002 17:02:27 +0000 (17:02 +0000)]
There's a name clash between OpenSSL and RSAref.  Since this engine handles
RSAref data, pretend we don't care for OpenSSL's MD2 and MD5 structures or
implementation.
Remove all kinds of silly warning

21 years agoOn certain platforms, we redefine certain symbols using macros in
Richard Levitte [Thu, 24 Oct 2002 10:03:55 +0000 (10:03 +0000)]
On certain platforms, we redefine certain symbols using macros in
apps.h.  For those, it's better to include apps.h after the system
headers where those symbols may be defined, since there's otherwise a
chance that the C compiler will barf when it sees something that looks
like this after expansion:

int VMS_strcasecmp((str1),(str2))(const char *, const char *);

21 years agoSignal an error if the entered output password didn't match itself.
Richard Levitte [Wed, 23 Oct 2002 15:07:09 +0000 (15:07 +0000)]
Signal an error if the entered output password didn't match itself.
PR: 314

21 years agofix warnings, and harmonize indentation
Bodo Möller [Wed, 23 Oct 2002 13:11:38 +0000 (13:11 +0000)]
fix warnings, and harmonize indentation

21 years agoI don't like c-tab-always-indent ...
Bodo Möller [Wed, 23 Oct 2002 13:09:19 +0000 (13:09 +0000)]
I don't like c-tab-always-indent ...

21 years agoTypo: v3 is represented by 2.
Dr. Stephen Henson [Mon, 21 Oct 2002 00:10:10 +0000 (00:10 +0000)]
Typo: v3 is represented by 2.

21 years agoIn my extreme debug mode, gcc complains that 'static' doesn't come
Richard Levitte [Sun, 20 Oct 2002 20:38:18 +0000 (20:38 +0000)]
In my extreme debug mode, gcc complains that 'static' doesn't come
first.

21 years agoNew docs.
Dr. Stephen Henson [Sun, 20 Oct 2002 13:20:57 +0000 (13:20 +0000)]
New docs.

21 years agoMake pod2man happier.
Geoff Thorpe [Fri, 18 Oct 2002 22:04:26 +0000 (22:04 +0000)]
Make pod2man happier.

21 years agoIf dynamically-loadable ENGINEs are linked against a shared-library version
Geoff Thorpe [Fri, 18 Oct 2002 20:45:38 +0000 (20:45 +0000)]
If dynamically-loadable ENGINEs are linked against a shared-library version
of libcrypto, then it is possible that when they are loaded they will share
the same static data as the loading application/library. This means it will
be too late to set memory/ERR/ex_data/[etc] callbacks, but entirely
unnecessary to try. This change puts a static variable in the core ENGINE
code (contained in libcrypto) and a function returning a pointer to it. If
the loaded ENGINE's return value from this function matches the loading
application/library's return value - they share static data. If they don't
match, the loaded ENGINE has its own copy of libcrypto's static data and so
the callbacks need to be set.

Also, although 0.9.7 hasn't been released yet, it's clear this will
introduce a binary incompatibility between dynamic ENGINEs built for 0.9.7
and 0.9.8 (though others probably exist already from EC_*** hooks and
what-not) - so the version control values are correspondingly bumped.

21 years agoAnother ENGINE implementation dependant on string.h.
Geoff Thorpe [Fri, 18 Oct 2002 19:23:27 +0000 (19:23 +0000)]
Another ENGINE implementation dependant on string.h.

21 years agoWe need to propogate SHARED_LIBS to sub-directories for "install" targets
Geoff Thorpe [Fri, 18 Oct 2002 19:05:32 +0000 (19:05 +0000)]
We need to propogate SHARED_LIBS to sub-directories for "install" targets
now.

21 years agoThe loop variable is 'l', not 'i'.
Geoff Thorpe [Fri, 18 Oct 2002 19:02:18 +0000 (19:02 +0000)]
The loop variable is 'l', not 'i'.

21 years agoCorrected exchanged parameters in example for EVP_EncryptInit_ex()
Lutz Jänicke [Fri, 18 Oct 2002 09:47:14 +0000 (09:47 +0000)]
Corrected exchanged parameters in example for EVP_EncryptInit_ex()
Submitted by: "Marcus Carey" <marcus.carey@verizon.net>
Reviewed by:
PR: 265

21 years agochange Emacs indentation style to make it easier to insert
Bodo Möller [Thu, 17 Oct 2002 09:16:02 +0000 (09:16 +0000)]
change Emacs indentation style to make it easier to insert
tabs manually

Submitted by: Pierre Bacquet <pbacquet@delta.fr>

21 years agoEh, -Wl,--whole-archive disappeared from the GNU targets. I've no
Richard Levitte [Wed, 16 Oct 2002 22:44:52 +0000 (22:44 +0000)]
Eh, -Wl,--whole-archive disappeared from the GNU targets.  I've no
idea why, but that was definitely wrong...

21 years agoThe ENGINE implementations in ./engines/ should be role models on how to
Geoff Thorpe [Wed, 16 Oct 2002 21:50:28 +0000 (21:50 +0000)]
The ENGINE implementations in ./engines/ should be role models on how to
write external engines (and thus should require only installed openssl
headers and libs to compile without warnings). So this gets rid of recently
introduced compilation warnings (no longer including internal headers) by
including string.h directly.

21 years ago- Remo Inverardi noticed that ENGINEs don't have an "up_ref" function in the
Geoff Thorpe [Wed, 16 Oct 2002 01:29:37 +0000 (01:29 +0000)]
- Remo Inverardi noticed that ENGINEs don't have an "up_ref" function in the
normal 'structural' case (ENGINE_init() satisfies this in the less normal
'functional' case). This change provides such a function.

- Correct some "read" locks that should actually be "write" locks.

- make update.

21 years agoTypos.
Richard Levitte [Tue, 15 Oct 2002 20:30:56 +0000 (20:30 +0000)]
Typos.
PR: 189

21 years agoTypos.
Richard Levitte [Tue, 15 Oct 2002 20:29:09 +0000 (20:29 +0000)]
Typos.
PR: 189

21 years agoA much better idea, of course, is not to do a submake at all...
Richard Levitte [Tue, 15 Oct 2002 12:09:22 +0000 (12:09 +0000)]
A much better idea, of course, is not to do a submake at all...

21 years agoMakefile.shared needs to know how it can reach itself.
Richard Levitte [Tue, 15 Oct 2002 11:58:44 +0000 (11:58 +0000)]
Makefile.shared needs to know how it can reach itself.

21 years agoWhen BN_add_word() reaches top, it shouldn't try to add the the corresponding
Richard Levitte [Mon, 14 Oct 2002 11:33:32 +0000 (11:33 +0000)]
When BN_add_word() reaches top, it shouldn't try to add the the corresponding
word, since that word may not be zero.

21 years agomakedepend complains when a header file is included more than once in
Richard Levitte [Mon, 14 Oct 2002 10:02:36 +0000 (10:02 +0000)]
makedepend complains when a header file is included more than once in
the same source file.

21 years agoComplete the VxWorks fix by implementing a NULL RAND_poll() for it.
Richard Levitte [Mon, 14 Oct 2002 09:44:57 +0000 (09:44 +0000)]
Complete the VxWorks fix by implementing a NULL RAND_poll() for it.
PR: 253

21 years agolibs is a timestamp that we don't really need to know about.
Richard Levitte [Mon, 14 Oct 2002 09:35:11 +0000 (09:35 +0000)]
libs is a timestamp that we don't really need to know about.

21 years agoAdd needed libraries as per configuration to the list of libraries we
Richard Levitte [Mon, 14 Oct 2002 09:25:48 +0000 (09:25 +0000)]
Add needed libraries as per configuration to the list of libraries we
depend upon.

21 years agoAdd missing quotes.
Richard Levitte [Mon, 14 Oct 2002 09:24:50 +0000 (09:24 +0000)]
Add missing quotes.
Make sure test doesn't barf because of missing spaces before the
closing ].
Add -lc to the list of libraries we depend upon.  Not always
necessary, but never hurts.

21 years agoTargeting the solaris platform for specific tests. Something is going
Richard Levitte [Sun, 13 Oct 2002 22:57:51 +0000 (22:57 +0000)]
Targeting the solaris platform for specific tests.  Something is going
wrong, and my test engine doesn't show it.  The verbosity will be
temporary for about a day.

21 years agoClarify where the engines are by default.
Richard Levitte [Sat, 12 Oct 2002 16:07:31 +0000 (16:07 +0000)]
Clarify where the engines are by default.

21 years agoChase down the missing backslashes.
Richard Levitte [Sat, 12 Oct 2002 09:16:10 +0000 (09:16 +0000)]
Chase down the missing backslashes.

21 years agoAdd more commentary. Check that *num is smaller than the block size.
Richard Levitte [Fri, 11 Oct 2002 22:42:34 +0000 (22:42 +0000)]
Add more commentary.  Check that *num is smaller than the block size.

21 years agoThe AES CTR API was buggy, we need to save the encrypted counter as well
Richard Levitte [Fri, 11 Oct 2002 22:37:29 +0000 (22:37 +0000)]
The AES CTR API was buggy, we need to save the encrypted counter as well
between calls, or that will be lost if it returned with *num non-zero.

21 years agoStep 14 of move of engines: Final step, document the change.
Richard Levitte [Fri, 11 Oct 2002 22:06:44 +0000 (22:06 +0000)]
Step 14 of move of engines:  Final step, document the change.

21 years agomake update.
Richard Levitte [Fri, 11 Oct 2002 20:45:56 +0000 (20:45 +0000)]
make update.

21 years agoAnd if the path has a space, we definitely need to protect $openssl.
Richard Levitte [Fri, 11 Oct 2002 20:31:27 +0000 (20:31 +0000)]
And if the path has a space, we definitely need to protect $openssl.

21 years agoOh, there were *two* places where we needed to protect the file
Richard Levitte [Fri, 11 Oct 2002 20:28:23 +0000 (20:28 +0000)]
Oh, there were *two* places where we needed to protect the file
name...

21 years agoFor the platforms where version info is inserted separately into the
Richard Levitte [Fri, 11 Oct 2002 19:56:57 +0000 (19:56 +0000)]
For the platforms where version info is inserted separately into the
shared library, set those flags conditionally.

21 years agoStep 13 of move of engines: Remove old files.
Richard Levitte [Fri, 11 Oct 2002 18:52:42 +0000 (18:52 +0000)]
Step 13 of move of engines:  Remove old files.

21 years agoStep 12 of move of engines: Time to make the changes to support
Richard Levitte [Fri, 11 Oct 2002 18:51:29 +0000 (18:51 +0000)]
Step 12 of move of engines: Time to make the changes to support
automatic load of dynamic engines.  Make the changes in the main
Makefile so the engines are built, but now in the engines/ directory.

Note: The changes in step 12 have all been made by Geoff Thorpe.
Credit where credit is due.

21 years agoStep 11c of move of engines: Time to make the changes to support
Richard Levitte [Fri, 11 Oct 2002 18:49:55 +0000 (18:49 +0000)]
Step 11c of move of engines: Time to make the changes to support
automatic load of dynamic engines.  Change the iterator to try to load
the requested engine dynamically.  The environment variable
OPENSSL_ENGINES can be used to override the internal default directory
where one can expect to find dynamically loadable engines.

Note: The changes in step 11 have all been made by Geoff Thorpe.
Credit where credit is due.

21 years agoStep 11b of move of engines: Time to make the changes to support
Richard Levitte [Fri, 11 Oct 2002 18:47:51 +0000 (18:47 +0000)]
Step 11b of move of engines: Time to make the changes to support
automatic load of dynamic engines.  Add functionality to the dynamic
engine to handle engine directories and loading from those.  This
is currently NOT compatible with the use of LD_LIBRARY_PATH and
similar environment variables.

Note: The changes in step 11 have all been made by Geoff Thorpe.
Credit where credit is due.

21 years agoStep 11a of move of engines: Time to make the changes to support
Richard Levitte [Fri, 11 Oct 2002 18:42:54 +0000 (18:42 +0000)]
Step 11a of move of engines: Time to make the changes to support
automatic load of dynamic engines.  Unless we don't have shared
library support, do not try to load any "built-in" engines except for
cryptodev.

21 years agoStep 10 of move of engines: Change crypto/engine/Makefile.ssl so we
Richard Levitte [Fri, 11 Oct 2002 18:40:47 +0000 (18:40 +0000)]
Step 10 of move of engines: Change crypto/engine/Makefile.ssl so we
don't build any "built-in" engines in that directory any more, except
fo the cryptodev one.

21 years agoStep 9 of move of engines: rename crypto/engine/hw_cryptodev.c to
Richard Levitte [Fri, 11 Oct 2002 18:38:26 +0000 (18:38 +0000)]
Step 9 of move of engines: rename crypto/engine/hw_cryptodev.c to
eng_cryptodev.c.  This is an engine that (at least currently) has
to be built in.

21 years agoTypo
Richard Levitte [Fri, 11 Oct 2002 18:32:32 +0000 (18:32 +0000)]
Typo

21 years agoStep 8 of move of engines: Remove the last little quirks.
Richard Levitte [Fri, 11 Oct 2002 18:21:40 +0000 (18:21 +0000)]
Step 8 of move of engines: Remove the last little quirks.
DECIMAL_SIZE is copied from crypto/cryptlib.h.

21 years agoWe didn't copy the cryptodev engine here, darn it!
Richard Levitte [Fri, 11 Oct 2002 18:20:06 +0000 (18:20 +0000)]
We didn't copy the cryptodev engine here, darn it!

21 years agoStep 7 of move of engines: Engines should not depend on private
Richard Levitte [Fri, 11 Oct 2002 18:17:16 +0000 (18:17 +0000)]
Step 7 of move of engines: Engines should not depend on private
OpenSSL header files.

21 years agoTypo.
Richard Levitte [Fri, 11 Oct 2002 18:10:14 +0000 (18:10 +0000)]
Typo.

21 years agoStep 6 of move of engines: rename the macro ENGINE_DYNAMIC_SUPPORT to
Richard Levitte [Fri, 11 Oct 2002 18:06:08 +0000 (18:06 +0000)]
Step 6 of move of engines: rename the macro ENGINE_DYNAMIC_SUPPORT to
OPENSSL_NO_DYNAMIC_ENGINE and make sure that gets defined unless
shared library support has been specifically requested.

21 years agosynchronize with 0.9.7-stable version of this file
Bodo Möller [Fri, 11 Oct 2002 17:56:34 +0000 (17:56 +0000)]
synchronize with 0.9.7-stable version of this file

21 years agoThat wasn't supposed to be there...
Richard Levitte [Fri, 11 Oct 2002 17:43:53 +0000 (17:43 +0000)]
That wasn't supposed to be there...

21 years agoStep 5 of move of engines: Add a makefile (and a .cvsignore).
Richard Levitte [Fri, 11 Oct 2002 17:42:30 +0000 (17:42 +0000)]
Step 5 of move of engines: Add a makefile (and a .cvsignore).

21 years agoStep 4 of move of engines: Split e.ec into individual files for each
Richard Levitte [Fri, 11 Oct 2002 17:41:40 +0000 (17:41 +0000)]
Step 4 of move of engines: Split e.ec into individual files for each
engine.

21 years agoStep 3 of move of engines: copy the corresponding vendor header files.
Richard Levitte [Fri, 11 Oct 2002 17:10:59 +0000 (17:10 +0000)]
Step 3 of move of engines: copy the corresponding vendor header files.

21 years agoStep 2 of move of engines: copy engines to new directory and rename them
Richard Levitte [Fri, 11 Oct 2002 17:08:27 +0000 (17:08 +0000)]
Step 2 of move of engines: copy engines to new directory and rename them
to be prefixed with e_ instead of hw_.  They aren't necessarely hardware
engines.  The files commited here are exact copies of the corresponding
hw_ files found in crypto/engine/.

21 years agoAdd a configuration target for A/UX.
Richard Levitte [Fri, 11 Oct 2002 14:39:03 +0000 (14:39 +0000)]
Add a configuration target for A/UX.
PR: 271

21 years agomake update
Richard Levitte [Fri, 11 Oct 2002 12:22:47 +0000 (12:22 +0000)]
make update

21 years agoThere may be more than one single quote to fix.
Richard Levitte [Fri, 11 Oct 2002 11:34:20 +0000 (11:34 +0000)]
There may be more than one single quote to fix.
PR: 256

21 years agoMake sure it's properly detected when there's no version information
Richard Levitte [Fri, 11 Oct 2002 11:14:41 +0000 (11:14 +0000)]
Make sure it's properly detected when there's no version information
at all, and in all other cases, make sure foo.so is linked to
foo.so.{soversion}.

21 years agoMake sure $fname will not give us any surprises with any funny characters.
Richard Levitte [Fri, 11 Oct 2002 11:07:28 +0000 (11:07 +0000)]
Make sure $fname will not give us any surprises with any funny characters.
PR: 256

21 years agoBN_bn2hex() returns "0" instead of "00" for zero. This disrputs the
Richard Levitte [Fri, 11 Oct 2002 09:38:56 +0000 (09:38 +0000)]
BN_bn2hex() returns "0" instead of "00" for zero.  This disrputs the
requirement that the serial number always be an even amount of characters.
PR: 248

21 years agoFix inconsistencies in the Darwin targets.
Richard Levitte [Fri, 11 Oct 2002 08:45:42 +0000 (08:45 +0000)]
Fix inconsistencies in the Darwin targets.
Add a variant of SHLIB_SOVER without the preceding period.

21 years agoAdd a suffix for Darwin's sake, since it seems like .dylib comes after
Richard Levitte [Fri, 11 Oct 2002 07:33:38 +0000 (07:33 +0000)]
Add a suffix for Darwin's sake, since it seems like .dylib comes after
the version in the file name.

21 years agoMove the shared library construction stuff to Makefile.shared, a
Richard Levitte [Fri, 11 Oct 2002 00:37:11 +0000 (00:37 +0000)]
Move the shared library construction stuff to Makefile.shared, a
helper makefile that generalises our way of building shared libraries
and is designed to take care of almost anything (I hope).

21 years agoRhapsody had ftime, Darwin doesn't (any longer?)
Richard Levitte [Thu, 10 Oct 2002 13:35:49 +0000 (13:35 +0000)]
Rhapsody had ftime, Darwin doesn't (any longer?)

21 years agoAdd a few more target platforms, to see how well the shared library
Richard Levitte [Thu, 10 Oct 2002 12:46:05 +0000 (12:46 +0000)]
Add a few more target platforms, to see how well the shared library
linking works on them.

21 years agoVMS below version 7 doesn't have strcasecmp, so let's roll our own on VMS.
Richard Levitte [Thu, 10 Oct 2002 09:05:05 +0000 (09:05 +0000)]
VMS below version 7 doesn't have strcasecmp, so let's roll our own on VMS.
PR: 184

21 years agoTypo
Richard Levitte [Thu, 10 Oct 2002 08:32:39 +0000 (08:32 +0000)]
Typo

21 years agoRFC 2712 redefines the codes for use of Kerberos 5 in SSL/TLS.
Richard Levitte [Thu, 10 Oct 2002 07:59:03 +0000 (07:59 +0000)]
RFC 2712 redefines the codes for use of Kerberos 5 in SSL/TLS.
PR: 189

21 years agoMore docs.
Dr. Stephen Henson [Wed, 9 Oct 2002 17:19:59 +0000 (17:19 +0000)]
More docs.

21 years agoTypo.
Dr. Stephen Henson [Wed, 9 Oct 2002 17:15:35 +0000 (17:15 +0000)]
Typo.

21 years agoUpdate docs.
Dr. Stephen Henson [Wed, 9 Oct 2002 17:05:05 +0000 (17:05 +0000)]
Update docs.

21 years agoMake sure that the 'config' variable is correctly defined and declared
Richard Levitte [Wed, 9 Oct 2002 15:36:23 +0000 (15:36 +0000)]
Make sure that the 'config' variable is correctly defined and declared
for monolithic as well as non-monolithic biuld.
More work is probably needed in this area.
PR: 144

21 years agoRemove redundancy and use the main makefile better
Richard Levitte [Wed, 9 Oct 2002 15:12:36 +0000 (15:12 +0000)]
Remove redundancy and use the main makefile better

21 years agoKeep the sub_all symbol so all the algorithm Makefiles won't break.
Richard Levitte [Wed, 9 Oct 2002 15:03:21 +0000 (15:03 +0000)]
Keep the sub_all symbol so all the algorithm Makefiles won't break.

21 years agoChange the main Makefile to have "mini-build" targets.
Richard Levitte [Wed, 9 Oct 2002 14:52:01 +0000 (14:52 +0000)]
Change the main Makefile to have "mini-build" targets.
PR: 253, last part.

21 years agoDon't fuss with the demo binaries
Richard Levitte [Wed, 9 Oct 2002 13:57:55 +0000 (13:57 +0000)]
Don't fuss with the demo binaries

21 years agoAdd a few more VxWorks targets.
Richard Levitte [Wed, 9 Oct 2002 13:40:48 +0000 (13:40 +0000)]
Add a few more VxWorks targets.
Correct misspelled VXWORKS macros.
Add VXWORKS identifying macros to e_os2.h.
Add required inclusions and mappings for VxWorks in e_os.h.
A few small modifications to make OpenSSL build and work on VxWorks.
PR: 253, except for the  change that was handled in an earlier
         commit, and a request for easy build of just parts of OpenSSL.

21 years agoUse double dashes so makedepend doesn't misunderstand the flags we
Richard Levitte [Wed, 9 Oct 2002 13:25:12 +0000 (13:25 +0000)]
Use double dashes so makedepend doesn't misunderstand the flags we
give it.
For 0.9.7 and up, that means util/domd needs to remove those double
dashes from the argument list when gcc is used to find the
dependencies.

21 years agoPKCS12_parse manual page.
Dr. Stephen Henson [Wed, 9 Oct 2002 13:10:23 +0000 (13:10 +0000)]
PKCS12_parse manual page.

21 years agoPKCS12_create manual page
Dr. Stephen Henson [Wed, 9 Oct 2002 12:06:58 +0000 (12:06 +0000)]
PKCS12_create manual page

21 years agoMore man pages.
Dr. Stephen Henson [Wed, 9 Oct 2002 12:06:12 +0000 (12:06 +0000)]
More man pages.

21 years agoAdd missing LF
Richard Levitte [Wed, 9 Oct 2002 06:35:47 +0000 (06:35 +0000)]
Add missing LF

21 years agoPKCS7_verify() docs.
Dr. Stephen Henson [Tue, 8 Oct 2002 00:40:58 +0000 (00:40 +0000)]
PKCS7_verify() docs.

21 years agoMore docs.
Dr. Stephen Henson [Mon, 7 Oct 2002 17:31:00 +0000 (17:31 +0000)]
More docs.

21 years agoMore d2i/i2d manual pages.
Dr. Stephen Henson [Mon, 7 Oct 2002 13:07:00 +0000 (13:07 +0000)]
More d2i/i2d manual pages.

21 years agoDocument "0" and "1" naming convention.
Dr. Stephen Henson [Sun, 6 Oct 2002 12:59:25 +0000 (12:59 +0000)]
Document "0" and "1" naming convention.

21 years agoUpdate docs.
Dr. Stephen Henson [Sun, 6 Oct 2002 12:40:31 +0000 (12:40 +0000)]
Update docs.

21 years agoUpdate docs.
Dr. Stephen Henson [Sun, 6 Oct 2002 12:34:06 +0000 (12:34 +0000)]
Update docs.

21 years agoUpdate DH parameter docs.
Dr. Stephen Henson [Sun, 6 Oct 2002 12:24:09 +0000 (12:24 +0000)]
Update DH parameter docs.

21 years agoVarious Win32 fixes.
Dr. Stephen Henson [Sun, 6 Oct 2002 12:14:55 +0000 (12:14 +0000)]
Various Win32 fixes.

Resolve signed/unsigned conflicts

Make dso_win32.c compile.