- Jun 16, 2000
-
-
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.
-
Geoff Thorpe authored
Also, "make update" has added some missing functions to libeay.num, updated the TABLE for the alpha changes, and updated thousands of dependancies that have changed from recent commits.
-
- Jun 12, 2000
-
-
Ulf Möller authored
-
Ulf Möller authored
-
- Jun 11, 2000
-
-
Dr. Stephen Henson authored
Documentation correction.
-
Dr. Stephen Henson authored
EVP_DecryptInit() return values. Update docs.
-
Dr. Stephen Henson authored
to support multiple calls. New function to retrieve email address from certificates and requests.
-
- Jun 10, 2000
-
-
Bodo Möller authored
as expected -- maybe it's the different processor, maybe my previous timings were too inaccurate.
-
Bodo Möller authored
Don't give performance gain estimates that appear to be more precise than they really are, especially when they are wrong (2/(1/1.15 + 1) = ca. 1.0698).
-
- Jun 09, 2000
-
-
Bodo Möller authored
-
Richard Levitte authored
was a really bad idea. For example, the following: #include <x509.h> #include <bio.h> #include <asn1.h> would make sure that things like ASN1_UTCTIME_print() wasn't defined unless you moved the inclusion of bio.h to above the inclusion of x509.h. The reason is that x509.h includes asn1.h, and the declaration of ASN1_UTCTIME_print() depended on the definition of HEADER_BIO_H. That's what I call an obscure bug. Instead, this change makes sure that whatever header files are needed for the correct process of one header file are included automagically, and that the definitions of, for example, BIO-related things are dependent on the absence of the NO_{foo} macros. This is also consistent with the way parts of OpenSSL can be excluded at will.
-
Bodo Möller authored
-
- Jun 08, 2000
-
-
Bodo Möller authored
-
Bodo Möller authored
-
Bodo Möller authored
says one should use.
-
Bodo Möller authored
marginally faster BN_mod_exp for 1024 bit exponents.
-
Bodo Möller authored
-
Bodo Möller authored
because we're only handling words anyway) in BN_mod_exp_mont_word making it a little faster for very small exponents, and adjust the performance gain estimate in CHANGES according to slightly more thorough measurements. (15% faster than BN_mod_exp_mont for "large" base, 20% faster than BN_mod_exp_mont for small base.)
-
- Jun 07, 2000
-
-
Bodo Möller authored
-
Bodo Möller authored
it is expected).
-
Bodo Möller authored
-
- Jun 06, 2000
-
-
Ulf Möller authored
for use with makefile.one)
-
Andy Polyakov authored
'p' more than once without an intervening sequence point. This behavior is undefined." What it essentially complains about is 'p=p+=1'. Now it's changed to 'p=p+1'...
-
Andy Polyakov authored
MT-support for IRIX 6.x and Alpha-Linux
-
Ulf Möller authored
-
- Jun 05, 2000
-
-
Andy Polyakov authored
Submitted by: Reviewed by: PR:
-
Bodo Möller authored
-
- Jun 04, 2000
-
-
Richard Levitte authored
4.1.4 uses libiberty to define strtoul and strerror.
-
Richard Levitte authored
needed, or size_t won't be defined on SunOS 4.1.4.
-