- 16 11月, 2003 1 次提交
-
-
由 Ulf Möller 提交于
so don't run them if BN_DEBUG_RAND is defined. Also, fix another small bug. Submitted by: Nils Larsch
-
- 15 11月, 2003 1 次提交
-
-
由 Ulf Möller 提交于
Keep it as is to avoid an API change, but check for negativ values. Submitted by: Nils Larsch
-
- 14 11月, 2003 1 次提交
-
-
由 Richard Levitte 提交于
-
- 13 11月, 2003 1 次提交
-
-
由 Geoff Thorpe 提交于
generally a more efficient comparison than comparing two integers, and the first of these two loops was off-by-one (copying one too many values). This change also removes a superfluous assignment that would set an unused word to zero (and potentially allow an overrun in some cases). Submitted by: Nils Larsch Reviewed by: Geoff Thorpe
-
- 11 11月, 2003 2 次提交
-
-
由 Geoff Thorpe 提交于
(where it was impossible to create an EC certificate with a compressed public key), and has some style improvements based on some comments from Steve Henson about use of the ASN1 macros. Submitted by: Nils Larsch Reviewed by: Geoff Thorpe
-
由 Geoff Thorpe 提交于
Submitted by: Nils Larsch Reviewed by: Geoff Thorpe
-
- 10 11月, 2003 1 次提交
-
-
由 Dr. Stephen Henson 提交于
-
- 07 11月, 2003 5 次提交
-
-
由 Ulf Möller 提交于
-
由 Ulf Möller 提交于
-
由 Geoff Thorpe 提交于
bn_correct_top(), previously only bn_check_top() did this.
-
由 Geoff Thorpe 提交于
before.
-
由 Geoff Thorpe 提交于
-
- 06 11月, 2003 4 次提交
-
-
由 Geoff Thorpe 提交于
constant BIGNUMs. It turns out that this trips up different but equally useful compiler warnings to -Wcast-qual, and so wasn't worth the ugliness it created. (Thanks to Ulf for the forehead-slap.)
-
由 Ulf Möller 提交于
-
由 Ulf Möller 提交于
-
由 Ulf Möller 提交于
-
- 05 11月, 2003 1 次提交
-
-
由 Geoff Thorpe 提交于
is itself experimental, and in addition may cause execution to break on existing openssl "bugs" that previously were harmless or at least invisible.
-
- 04 11月, 2003 2 次提交
-
-
由 Geoff Thorpe 提交于
Submitted by: Nils Larsch
-
由 Geoff Thorpe 提交于
and structures as constant without having to cast away const at any point. There is still plenty of other code that makes gcc's "-Wcast-qual" unhappy, but crypto/bn/ is now ok. Purists are welcome to suggest alternatives.
-
- 31 10月, 2003 3 次提交
-
-
由 Richard Levitte 提交于
rather than OPENSSLDIR.
-
由 Richard Levitte 提交于
-
由 Geoff Thorpe 提交于
constructing BIGNUM structures with pointers offset into other bignums (among other things). This corrects some of it that is too plainly insane, and tries to ensure that bignums are normalised when passed to other functions.
-
- 30 10月, 2003 11 次提交
-
-
由 Geoff Thorpe 提交于
left in an inconsistent state when they are released for later reuse. This change resets the BIGNUMs when they are released back to the context.
-
由 Geoff Thorpe 提交于
input to a function.
-
由 Geoff Thorpe 提交于
-
由 Geoff Thorpe 提交于
-
由 Geoff Thorpe 提交于
Obtained from: Stephen Henson <steve@openssl.org>
-
由 Geoff Thorpe 提交于
callback structure just before it is needed.
-
由 Geoff Thorpe 提交于
requires -DPEDANTIC and was hidden at the bottom of the file. This moves it to the top and removes the redundant declaration.
-
由 Geoff Thorpe 提交于
Obtained from: Andy Polyakov <appro@openssl.org>
-
由 Geoff Thorpe 提交于
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 提交于
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 提交于
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.
-
- 29 10月, 2003 7 次提交
-
-
由 Richard Levitte 提交于
be the same. Therefore, the removed memcpy()s need to be restored.
-
由 Geoff Thorpe 提交于
-
由 Geoff Thorpe 提交于
confusion. Also silence a couple of signed/unsigned warnings.
-
由 Geoff Thorpe 提交于
-
由 Geoff Thorpe 提交于
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 提交于
-
由 Geoff Thorpe 提交于
-