- 10 12月, 2003 1 次提交
-
-
由 Richard Levitte 提交于
Correct the typo PUKEY...
-
- 06 12月, 2003 3 次提交
-
-
由 Ulf Möller 提交于
Submitted by: Nils Larsch
-
由 Ulf Möller 提交于
Submitted by: Nils Larsch
-
由 Ulf Möller 提交于
Submitted by: Nils Larsch
-
- 04 12月, 2003 1 次提交
-
-
由 Lutz Jänicke 提交于
Submitted by: Witold Filipczyk <witekfl@poczta.gazeta.pl> PR: #513
-
- 03 12月, 2003 1 次提交
-
-
由 Geoff Thorpe 提交于
- Add missing bn_check_top() calls and relocate some others - Use BN_is_zero() where appropriate - Remove assert()s that bn_check_top() is already covering - Simplify the code in places (esp. bn_expand2()) - Only keep ambiguous zero handling if BN_STRICT isn't defined - Remove some white-space and make some other aesthetic tweaks
-
- 02 12月, 2003 7 次提交
-
-
由 Geoff Thorpe 提交于
the same thing. Also, I have some stuff on the back-burner related to some BN_CTX notes from Peter Gutmann about his cryptlib hacks to the bignum code. The BN_CTX comments are there to remind me of some relevant points in the code.
-
由 Geoff Thorpe 提交于
once in the source (where it is set for the benefit of no other code whatsoever). I've deprecated the declaration in the header and likewise made the use of the flag conditional in bn_lib.c. Note, this change also NULLs the 'd' pointer in a BIGNUM when it is reset but not deallocated.
-
由 Geoff Thorpe 提交于
-
由 Geoff Thorpe 提交于
white-space, and include extra headers to satisfy debugging builds.
-
由 Geoff Thorpe 提交于
white-space.
-
由 Geoff Thorpe 提交于
which, in turn, are used nowhere at all. This is a good thing because bn_set_max() would currently generate code that wouldn't compile (BIGNUM has no 'max' element). The only apparent use for bn_set_[low|high] would be for implementing windowing algorithms, and all of openssl's seem to use bn_***_words() helpers instead (including the BN_div() that Nils fixed recently, which had been using independently-coded versions of what these unused macros are intended for). I'm therefore consigning these macros to cvs oblivion in the name of readability.
-
由 Geoff Thorpe 提交于
bn_correct_top() or bn_check_top() depending on debug settings. For internal source, all bn_fix_top()s should be converted one way or the other depending on whether the use of bn_correct_top() is justified. For BN_div_recp(), these cases should not require correction if the other bignum functions are doing their jobs properly, so convert to bn_check_top().
-
- 01 12月, 2003 8 次提交
-
-
由 Richard Levitte 提交于
ty to allocate anything at all. This will allow eNULL to still work. PR: 751 Notified by: Lutz Jaenicke
-
由 Richard Levitte 提交于
PR: 751 Notified by: meder@mcs.anl.gov Reviewed by: Lutz Jaenicke, Richard Levitte
-
由 Richard Levitte 提交于
if the give size is 0. This is a thought that came up in PR 751.
-
由 Lutz Jänicke 提交于
PR: #735 Submitted by: Tim Rice <tim@multitalents.net>
-
由 Geoff Thorpe 提交于
this and a few other changes.
-
由 Geoff Thorpe 提交于
(ie. where top may be zero, or it may be one if the corresponding word is set to zero). Note, this only affects the macros in bn.h, there are probably similar corrections required in some c files. Also, clarify the audit-related macros at the top of the header. Mental note: I must not forget to clean all this out before 0.9.8 is released ...
-
由 Geoff Thorpe 提交于
tolerance of ambiguous zero-representation, it just improves BN_abs_is_word() and simplifies other macros that depend on it.
-
由 Geoff Thorpe 提交于
pseudo-random data for each bn_pollute().
-
- 30 11月, 2003 1 次提交
-
-
由 Geoff Thorpe 提交于
functions.
-
- 29 11月, 2003 7 次提交
-
-
由 Richard Levitte 提交于
PR: 755 Notified by: Jakub Bogusz <qboosh@pld-linux.org>
-
由 Richard Levitte 提交于
Therefore, change all instances of the symbol 'list' to something else. PR: 758 Submitted by: Frédéric Giudicelli <groups@newpki.org>
-
由 Richard Levitte 提交于
PR: 768 Submitted by: Vadim Fedukovich <vf@unity.net>
-
由 Richard Levitte 提交于
that gets built before objects barfs all over the place because it uses a new NID that hasn't had a chance of getting defined yet (in this case, it was about a couple of new EC curves, and therefore a couple of new corresponding NIDs). I'm placing objects first in SDIRS! There.
-
由 Richard Levitte 提交于
compared it to the amount of bits required... PR: 770 Submitted by: c zhang <czhang2005@hotmail.com>
-
由 Richard Levitte 提交于
PR: 771 Submitted by: c zhang <czhang2005@hotmail.com>
-
由 Geoff Thorpe 提交于
-
- 28 11月, 2003 8 次提交
-
-
由 Richard Levitte 提交于
PR: 732 Submitted by: Ilya Zakharevich <nospam-abuse@ilyaz.org> Submitter's comment: This patch: a) Introduces a new file os2/backwardify.pl. b) Introduces a new mk1mf.pl variable $preamble. As you can see, it may be used also to move some OS-specific code to VC-CE too (the the first chunk of the patch); c) The DESCRIPTION specifier of the .def file is made more informative: now it contains the version number too. On OS/2 it is made conformant to OS/2 conventions; in particular, when one runs the standard command BLDLEVEL this.DLL one can see: Vendor: www.openssl.org/ Revision: 0.9.7c Description: OpenSSL: implementation of Secure Socket Layer; DLL for library crypto. Build for EMX -Zmtd [I did not make Win32 descriptions as informative as this - I'm afraid to break something. Be welcome to fix this.] d) On OS/2 the generated DLL was hardly usable (it had a shared initialized data segment). e) On OS/2 the generated DLLs had names like ssl.dll. However, DLL names on OS/2 are "global data". It is hard to have several DLLs with the same name on the system. Thus this precluded coexistence of OpenSSL with DLLs for other SLL implementations - or other name clashes. I transparently changed the names of the DLLs to open_ssl.dll and cryptssl.dll. f) The file added in (a) is used to create "forwarder" DLLs, so the applications expecting the "old" DLL names may use the new DLLs transparently. (A presence of these DLLs on the system nullifies (e), but makes old applications work. This is a stopgap measure until the old applications are relinked. Systems with no old applications do not need these DLLs, so may enjoy all the benefits of (e).) The new DLLs are placed in os2/ and os2/noname subdirectories. g) The makefiles created with os2/OS2-EMX.cmd did not work (some mysterious meaningless failures). The change to util/pl/OS2-EMX.pl uses the variable introduced in (b) to switch the Makefiles to SHELL=sh syntax. All these backslashes are removed, and the generated Makefiles started to work. h) Running os2/OS2-EMX.cmd now prints out what to do next.
-
由 Richard Levitte 提交于
to apps.c, and give it the hopefully descriptive name parse_yesno().
-
由 Richard Levitte 提交于
PR: 777 Submitted by: Michael Shields <mshields@sunblocksystems.com>
-
由 Richard Levitte 提交于
-
由 Richard Levitte 提交于
rationale behind the move is that it's use by several applications. The rationale behind the name change is that it describes what the function does a bit better.
-
由 Richard Levitte 提交于
to 'openssl req' and 'openssl ca'. PR: 779 Submitted by: Michael Bell <michael.bell@cms.hu-berlin.de> Reviewed by: Richard Levitte (there will be some follow-up changes)
-
由 Richard Levitte 提交于
PR: 780 Submitted by: Verdon Walker <VWalker@novell.com> Reviewed by: Richard Levitte
-
由 Richard Levitte 提交于
-
- 26 11月, 2003 2 次提交
-
-
由 Geoff Thorpe 提交于
against inconsistent BIGNUMs coming out of any of its API functions. So this change no longer "fixes" the bn_print.c functions, but it makes for cleaner code. This patch was a part of ticket 697. PR: 697 Submitted by: Otto Moerbeek Reviewed by: Geoff Thorpe
-
由 Geoff Thorpe 提交于
ticket 697 (though uses a different solution than the proposed one). This problem was initially raised by Otto Moerbeek. PR: 697 Submitted by: Nils Larsch Reviewed by: Geoff Thorpe
-
- 25 11月, 2003 1 次提交
-
-
由 Geoff Thorpe 提交于
optimizations. Submitted by: Nils Larsch
-