- Jun 23, 2000
-
-
Bodo Möller authored
and for small 'a' also a couple of calls to BN_mod_mul_montgomery(r, r, r, ...).
-
- Jun 22, 2000
-
-
Richard Levitte authored
applications. Also, have it and the certificate and key loading functions take a BIO argument for error output.
-
Richard Levitte authored
-
Richard Levitte authored
addition to the file given through the RANDFILE option or environment variable.
-
Richard Levitte authored
the 'INSTALL' file, which means that 9 times of 10, the BlowFish headers won't get installed. Avoid this in the same way it's done in crypto/des/Makefile.ssl, where someone apparently has thought of this...
-
Richard Levitte authored
be shared by several applications.
-
Richard Levitte authored
-
Richard Levitte authored
-
Richard Levitte authored
parameter takes precedence over the RANDFILE option in the configuration file.
-
Dr. Stephen Henson authored
into lexical order. Previously it depended on the order of files in the directory. This should now mean that all systems will agree on the order of safestack.h and will not change it needlessly and avoid massive needless commits to safestack.h in future. It wont however avoid this one :-(
-
- Jun 21, 2000
-
-
Ulf Möller authored
-
Geoff Thorpe authored
it cope with OpenBSD which doesn't understand "RTLD_NOW". * Added the dso_scheme config string entry for OpenBSD-x86 to give it DSO support. * 'make update' that has also absorbed some of Steve's mkstack changes for the ASN-related macros.
-
Dr. Stephen Henson authored
Fixes for Win32 build. This is mostly a work around for the old VC++ problem that it treats func() as func(void). Various prototypes had been added to 'compare' function pointers that triggered this. This could be fixed by removing the prototype, adding function pointer casts to every call or changing the passed function to use the expected arguments. I mostly did the latter. The mkdef.pl script was modified to remove the typesafe functions which no longer exist. Oh and some functions called OPENSSL_freeLibrary() were changed back to FreeLibrary(), wonder how that happened :-)
-
- Jun 20, 2000
-
-
Dr. Stephen Henson authored
Handle ASN1_SET_OF and PKCS12_STACK_OF using function casts in the same way as STACK_OF.
-
Geoff Thorpe authored
-
- Jun 19, 2000
-
-
Bodo Möller authored
-
Richard Levitte authored
-
Richard Levitte authored
Also, make sure empty slots of the dynamic lock stack are used. Actually, I'm not really sure this is the right thing to do, and may remove it, with an endlessly growing stack as result...
-
Richard Levitte authored
-
Bodo Möller authored
-
Richard Levitte authored
insecure, so a static lock is added to isolate the sensitive parts. Also, to avoid one thread freeing a lock that is used by another, a reference counter is added.
-
- Jun 18, 2000
-
-
Richard Levitte authored
any more.
-
Richard Levitte authored
-
Richard Levitte authored
be needed in some ENGINE code, and might serve elsewhere as well. Note that it's implemented in such a way that the locking itself is done through the same CRYPTO_lock function as the static locks. WARNING: This is currently experimental and untested code (it will get tested soon, though :-)).
-
Richard Levitte authored
type-specific stack function. Second, even when we don't build any of those functions, DECLARE_STACK_OF lines should not find themselves into $def.
-
- Jun 17, 2000
-
-
Bodo Möller authored
sk_whatever_insert and sk_whatever_set immediately reveals the subtle difference in parameter order. Change mkstack.pl so that safestack.h is not rewritten when nothing has changed.
-
- Jun 16, 2000
-
-
Dr. Stephen Henson authored
After some messing around this seems to work but needs a few more tests. Working out the syntax for sk_set_cmp_func() (cast it to a function that itself returns a function pointer) was painful :-( Needs some testing to see what other compilers think of this syntax. Also needs similar stuff for ASN1_SET_OF etc etc.
-
Richard Levitte authored
As far as I understand, it still needs to be compiled on NT... Contributed by Arne Ansper <arne@ats.cyber.ee>
-
Bodo Möller authored
-
Bodo Möller authored
-
Bodo Möller authored
label. (Reported by Alexei Bakharevski.)
-
Geoff Thorpe authored
"symbols" including functions (of all prototypes( and variables. Whilst casting any function type to another violates ANSI C (I believe), it is a necessary evil in shared-library APIs. However, it is quite conceivable that functions in general and data symbols could very well be represented differently to each other on some systems, as Bodo said; > Since the function/object distinction is a lot more likely to be > important on real-life platforms supporting DSO *and* it can be quite > easily done *and* it will silence compilers that don't like > assignments from void pointers to function pointer variables, why > not do it? I agree. So this change splits the "dso_bind" handler in DSO_METHOD into "dso_bind_var" and "dso_bind_func". Similarly the exported function DSO_bind() has been split in two. I've also put together changes for the various DSO_METHOD implementations, but so far only DSO_dlfcn() has been tested. BTW: The prototype for dso_bind had been a bit strange so I've taken the opportunity to change its shape (in both variations). Also, the README has been updated - particularly with a note about using customised native name-translation for shared libraries (and that you can't do it yet).
-
- Jun 15, 2000
-
-
Dr. Stephen Henson authored
-
Richard Levitte authored
-
Richard Levitte authored
Reported by Robert Eiglmaier <robert.eiglmaier@ixos.de>
-
- Jun 14, 2000
-
-
Richard Levitte authored
-
Bodo Möller authored
when symlink() fails.
-
- Jun 13, 2000
-
-
Bodo Möller authored
-
Bodo Möller authored
BN_mod_exp_atalla could be used.
-
Geoff Thorpe authored
BN_mod_exp. Call the regular atalla mod_exp operation instead.
-