- 03 9月, 2015 1 次提交
-
-
由 Rich Salz 提交于
There are many places (nearly 50) where we malloc and then memset. Add an OPENSSL_zalloc routine to encapsulate that. (Missed one conversion; thanks Richard) Also fixes GH328 Reviewed-by: NRichard Levitte <levitte@openssl.org>
-
- 14 5月, 2015 1 次提交
-
-
由 Richard Levitte 提交于
There are header files in crypto/ that are used by a number of crypto/ submodules. Move those to crypto/include/internal and adapt the affected source code and Makefiles. The header files that got moved are: crypto/cryptolib.h crypto/md32_common.h Reviewed-by: NRich Salz <rsalz@openssl.org>
-
- 05 5月, 2015 1 次提交
-
-
由 Rich Salz 提交于
For a local variable: TYPE *p; Allocations like this are "risky": p = OPENSSL_malloc(sizeof(TYPE)); if the type of p changes, and the malloc call isn't updated, you could get memory corruption. Instead do this: p = OPENSSL_malloc(sizeof(*p)); Also fixed a few memset() calls that I noticed while doing this. Reviewed-by: NRichard Levitte <levitte@openssl.org>
-
- 01 5月, 2015 1 次提交
-
-
由 Rich Salz 提交于
Don't check for NULL before calling OPENSSL_free Reviewed-by: NRichard Levitte <levitte@openssl.org>
-
- 29 4月, 2015 1 次提交
-
-
由 Rich Salz 提交于
Following ANSI C rules, remove the casts from calls to OPENSSL_malloc and OPENSSL_realloc. Reviewed-by: NRichard Levitte <levitte@openssl.org>
-
- 06 2月, 2015 1 次提交
-
-
由 Rich Salz 提交于
The mkstack.pl script now generates the entire safestack.h file. It generates output that follows the coding style. Also, removed all instances of the obsolete IMPLEMENT_STACK_OF macro. Reviewed-by: NAndy Polyakov <appro@openssl.org>
-
- 22 1月, 2015 1 次提交
-
-
由 Matt Caswell 提交于
Reviewed-by: NTim Hudson <tjh@openssl.org>
-
- 18 8月, 2014 1 次提交
-
-
由 Jonas Maebe 提交于
Signed-off-by: NKurt Roeckx <kurt@openssl.org> Reviewed-by: NDr. Stephen Henson <steve@openssl.org>
-
- 14 7月, 2014 1 次提交
-
-
由 Richard Levitte 提交于
Detected by dcruette@qualitesys.com
-
- 10 3月, 2010 1 次提交
-
-
由 Dr. Stephen Henson 提交于
Submitted By: Jaroslav Imrich <jaroslav.imrich@disig.sk> Add "missing" functions to get and set prompt constructor.
-
- 16 2月, 2009 1 次提交
-
-
由 Richard Levitte 提交于
Notified by Gerardo Ganis <gerardo.ganis@cern.ch>
-
- 27 7月, 2005 1 次提交
-
-
由 Nils Larsch 提交于
PR: 1170 Submitted by: Yair Elharrar Reviewed and edited by: Nils Larsch
-
- 17 5月, 2005 1 次提交
-
-
由 Andy Polyakov 提交于
first everywhere in crypto and skip stdio.h and string.h [because it includes them].
-
- 31 3月, 2005 1 次提交
-
-
由 Ben Laurie 提交于
-
- 27 12月, 2003 1 次提交
-
-
由 Richard Levitte 提交于
Use BUF_strlcat() instead of strcat(). Use BIO_snprintf() instead of sprintf(). In some cases, keep better track of buffer lengths. This is part of a large change submitted by Markus Friedl <markus@openbsd.org>
-
- 13 1月, 2003 1 次提交
-
-
由 Richard Levitte 提交于
PR: 456
-
- 05 12月, 2002 1 次提交
-
-
由 Richard Levitte 提交于
PR: 381
-
- 13 11月, 2002 1 次提交
-
-
由 Ben Laurie 提交于
-
- 02 9月, 2001 1 次提交
-
-
由 Geoff Thorpe 提交于
See the commit log message for that for more information. NB: X509_STORE_CTX's use of "ex_data" support was actually misimplemented (initialisation by "memset" won't/can't/doesn't work). This fixes that but requires that X509_STORE_CTX_init() be able to handle errors - so its prototype has been changed to return 'int' rather than 'void'. All uses of that function throughout the source code have been tracked down and adjusted.
-
- 13 8月, 2001 1 次提交
-
-
由 Geoff Thorpe 提交于
setting stack (actually, array) values in ex_data. So only increment the global counters if the underlying CRYPTO_get_ex_new_index() call succeeds. This change doesn't make "ex_data" right (see the comment at the head of ex_data.c to know why), but at least makes the source code marginally less frustrating.
-
- 11 7月, 2001 1 次提交
-
-
由 Richard Levitte 提交于
-
- 05 7月, 2001 1 次提交
-
-
由 Richard Levitte 提交于
-
- 24 6月, 2001 2 次提交
-
-
由 Richard Levitte 提交于
-
由 Richard Levitte 提交于
Implement UI controls. Current controls are the possibility to output the OpenSSL error stack on the same channel from within UI_process() and to check if the same user interface can be redone without being rebuilt (this is often more a question of philosophy than technicalities).
-
- 23 6月, 2001 1 次提交
-
-
由 Dr. Stephen Henson 提交于
-
- 20 6月, 2001 1 次提交
-
-
由 Richard Levitte 提交于
well. This probably requires reference counters and locks as well. To be implemented later.
-
- 19 6月, 2001 1 次提交
-
-
由 Richard Levitte 提交于
prompting, application-defined prompts, the possibility to use defaults (for example default passwords from somewhere else) and interrupts/cancelations.
-
- 11 6月, 2001 1 次提交
-
-
由 Dr. Stephen Henson 提交于
-
- 07 6月, 2001 1 次提交
-
-
由 Richard Levitte 提交于
-
- 06 6月, 2001 2 次提交
-
-
由 Richard Levitte 提交于
_XOPEN_SOURCE.
-
由 Richard Levitte 提交于
(for new functions...). One might still want to be able to pass down a user-data pointer to be used by the UI. However, ex_data doesn't quite cut it, since that means the appropriate index to it might need to be shared between parts that aren't really related in that sense, and would require the currently hidden (static) index holders to be uncovered. Not a good thing. Therefore, add the possibility to add a user-data pointer to a UI.
-
- 14 5月, 2001 1 次提交
-
-
由 Richard Levitte 提交于
-
- 10 5月, 2001 1 次提交
-
-
由 Dr. Stephen Henson 提交于
-
- 07 5月, 2001 1 次提交
-
-
由 Richard Levitte 提交于
like des_read_password and friends (backward compatibility functions using this new API are provided). The purpose is to remove prompting functions from the DES code section as well as provide for prompting through dialog boxes in a window system and the like.
-