- Oct 29, 2003
-
-
Geoff Thorpe authored
callback structure just before it is needed.
-
Geoff Thorpe authored
requires -DPEDANTIC and was hidden at the bottom of the file. This moves it to the top and removes the redundant declaration.
-
Geoff Thorpe authored
Obtained from: Andy Polyakov <appro@openssl.org>
-
Geoff Thorpe authored
structures being passed in to or out of API functions, and this corrects a couple of cases found so far. Also, lop off a couple of bytes of white-space.
-
Geoff Thorpe authored
I have tried to convert 'len' type variable declarations to unsigned as a means to address these warnings when appropriate, but when in doubt I have used casts in the comparisons instead. The better solution (that would get us all lynched by API users) would be to go through and convert all the function prototypes and structure definitions to use unsigned variables except when signed is necessary. The proliferation of (signed) "int" for strictly non-negative uses is unfortunate.
-
Geoff Thorpe authored
except internally to the allocator BN_CTX_new(), as such this deprecates the use of BN_CTX_init() in the API. Moreover, the structure definition of BN_CTX is taken out of bn_lcl.h and moved into bn_ctx.c itself. NDEBUG should probably only be "forced" in the top-level configuration, but until it is I will avoid removing it from bn_ctx.c which might surprise people with massive slow-downs in their keygens. So I've left it in bn_ctx.c but tidied up the preprocessor logic a touch and made it more tolerant of debugging efforts.
-
Richard Levitte authored
be the same. Therefore, the removed memcpy()s need to be restored.
-
Geoff Thorpe authored
-
Geoff Thorpe authored
confusion. Also silence a couple of signed/unsigned warnings.
-
Geoff Thorpe authored
-
Geoff Thorpe authored
choice but to have to cast away "const" qualifiers from their prototypes. This does not remove constification restrictions from hash/compare callbacks, but allows destructor commands to be run over a tables' elements without bad casts.
-
Geoff Thorpe authored
-
Geoff Thorpe authored
-
Geoff Thorpe authored
linux system (namely mine) chokes on our definitions and uses of the "HZ" symbol in crypto/tmdiff.[ch] and apps/speed.c as a "bad function cast" (when in fact there is no function casting involved at all). In both cases, it is easily worked around by not defining a cast into the macro and jiggling the expressions slightly. In addition - this highlights some cruft in openssl that needs sorting out. The tmdiff.h header is exported as part of the openssl API despite the fact that it is ugly as the driven sludge and not used anywhere in the library, applications, or utilities. More weird still, almost identical code exists in apps/speed.c though it looks to be slightly tweaked - so either tmdiff should be updated and used by speed.c, or it should be dumped because it's obviously not useful enough. Rather than removing it for now, I've changed the API for tmdiff to at least make sense. This involves taking the object type (MS_TM) from the implementation and using it in the header rather than using "char *" in the API and casting mercilessly in the code (ugh). If someone doesn't like "MS_TM" and the "ms_time_***" naming, by all means change it. This should be a harmless improvement, because the existing API is clearly not very useful (eg. we reimplement it rather than using it in our own utils). However, someone still needs to take a hack at consolidating speed.c and tmdiff.[ch] somehow.
-
Geoff Thorpe authored
and links with OPENSSL_NO_DEPRECATED defined.
-
Geoff Thorpe authored
be) precompiled out in the API headers. This change is to ensure that if it is defined when compiling openssl, the deprecated functions aren't implemented either.
-
Geoff Thorpe authored
comparisons. It's better not to allow this, because it gives false positives when using compiler warnings that detect mistyped symbols.
-
- Oct 28, 2003
-
-
Geoff Thorpe authored
-
Geoff Thorpe authored
-
Geoff Thorpe authored
-
Geoff Thorpe authored
of windows (see checkin 1.75 of crypto/evp/Makefile.ssl), so quiet cvs noise for the copied version.
-
- Oct 24, 2003
-
-
Geoff Thorpe authored
as this is already included by x509.h anyway.
-
- Oct 15, 2003
-
-
Richard Levitte authored
a multiple of AES_BLOCK_SIZE. Optimize decryption of all complete blocks in AES-CBC by removing an unnecessary memcpy(). The error was notified by James Fernandes <jf210032@exchange.DAYTONOH.NCR.com>. The unnecessary memcpy() was found as an effect of investigating that error.
-
- Oct 13, 2003
-
-
Richard Levitte authored
Thanks to Peter Sylvester <Peter.Sylvester@EdelWeb.fr> for the notification.
-
- Oct 11, 2003
-
-
Dr. Stephen Henson authored
-
Dr. Stephen Henson authored
-
- Oct 10, 2003
-
-
Dr. Stephen Henson authored
-
Dr. Stephen Henson authored
-
Dr. Stephen Henson authored
type is "other".
-
Dr. Stephen Henson authored
-
- Oct 07, 2003
-
-
Richard Levitte authored
allocated. Notified by Daniel Lucq <daniel@lucq.org>
-
- Oct 06, 2003
-
-
Richard Levitte authored
-
Richard Levitte authored
-
Richard Levitte authored
-
Richard Levitte authored
compression identity is already present among the registered compression methods, and if so, reject the addition request. Declare SSL_COMP_get_compression_method() so it can be used properly. Change ssltest.c so it checks what compression methods are available and enumerates them. As a side-effect, built-in compression methods will be automagically loaded that way. Additionally, change the identities for ZLIB and RLE to be conformant to draft-ietf-tls-compression-05.txt. Finally, make update. Next on my list: have the built-in compression methods added "automatically" instead of requiring that the author call SSL_COMP_add_compression_method() or SSL_COMP_get_compression_methods().
-
Richard Levitte authored
let's wrap it with a lock.
-
- Oct 04, 2003
-
-
Richard Levitte authored
and provide missing prototypes.
-
- Oct 02, 2003
-
-
Richard Levitte authored
Notified by Andrew Marlow <AMARLOW1@bloomberg.net>
-
Richard Levitte authored
-
- Oct 01, 2003
-
-
Richard Levitte authored
that do not have it.
-