- 03 11月, 2004 1 次提交
-
-
由 Richard Levitte 提交于
if $(EXHEADER) is empty. Notified by many, solution suggested by Carson Gaspar <carson@taltos.org>
-
- 18 5月, 2004 2 次提交
-
-
由 Geoff Thorpe 提交于
the Makefiles. NB: this commit is probably going to generate a huge posting and it is highly uninteresting to read.
-
由 Geoff Thorpe 提交于
dh.h, dsa.h, ec.h, ecdh.h, ecdsa.h, rsa.h), as the opaque bignum types are already declared in ossl_typ.h. Add explicit includes for bn.h in those C files that need access to structure internals or API functions+macros.
-
- 29 4月, 2004 1 次提交
-
-
由 Geoff Thorpe 提交于
-
- 20 4月, 2004 3 次提交
-
-
由 Geoff Thorpe 提交于
-
由 Geoff Thorpe 提交于
tree. This further reduces header interdependencies, and makes some associated cleanups.
-
由 Geoff Thorpe 提交于
changes are the fallout). As this could break source code that doesn't directly include headers for interfaces it uses, changes to recursive includes are covered by the OPENSSL_NO_DEPRECATED symbol. It's better to define this when building and using openssl, and then adapt code where necessary - this is how to stay current. However the mechanism exists for the lethargic.
-
- 27 12月, 2003 1 次提交
-
-
由 Richard Levitte 提交于
This is part of a large change submitted by Markus Friedl <markus@openbsd.org>
-
- 28 11月, 2003 1 次提交
-
-
由 Richard Levitte 提交于
PR: 780 Submitted by: Verdon Walker <VWalker@novell.com> Reviewed by: Richard Levitte
-
- 29 10月, 2003 2 次提交
-
-
由 Geoff Thorpe 提交于
and links with OPENSSL_NO_DEPRECATED defined.
-
由 Geoff Thorpe 提交于
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.
-
- 01 5月, 2003 1 次提交
-
-
由 Richard Levitte 提交于
-
- 11 4月, 2003 1 次提交
-
-
由 Richard Levitte 提交于
-
- 08 4月, 2003 1 次提交
-
-
由 Richard Levitte 提交于
of unneeded includes of openssl/engine.h.
-
- 04 4月, 2003 1 次提交
-
-
由 Richard Levitte 提交于
-
- 21 3月, 2003 2 次提交
-
-
由 Richard Levitte 提交于
-
由 Richard Levitte 提交于
-
- 11 3月, 2003 1 次提交
-
-
由 Geoff Thorpe 提交于
dsa_mod_exp() and bn_mod_exp() handlers from dsa_do_verify() and dsa_sign_setup(). When another DSA_METHOD implementation does not define these lower-level handlers, it becomes impossible to do a fallback to software on errors using a simple DSA_OpenSSL()->fn(key). This change allows the default DSA_METHOD to function in such circumstances by only using dsa_mod_exp() and bn_mod_exp() handlers if they exist, otherwise using BIGNUM implementations directly (which is what those handlers did before this change). There should be no noticable difference for the software case, or indeed any custom case that didn't already segfault, except perhaps that there is now one less level of indirection in all cases. PR: 507
-
- 23 2月, 2003 1 次提交
-
-
由 Ulf Möller 提交于
-
- 31 1月, 2003 2 次提交
-
-
由 Richard Levitte 提交于
bad, so let's not check OPENSSL_NO_ENGINE in those places. Fortunately, all the header files where the problem existed include ossl_typ.h, which makes a 'forward declaration' of the ENGINE type.
-
由 Richard Levitte 提交于
PR: 287
-
- 15 1月, 2003 2 次提交
-
-
由 Lutz Jänicke 提交于
Submitted by: Nils Larsch <nla@trustcenter.de> PR: 459
-
由 Geoff Thorpe 提交于
override key-generation implementations by placing handlers in the methods for DSA and DH. Also, parameter generation for DSA and DH is possible by another new handler for each method.
-
- 02 1月, 2003 1 次提交
-
-
由 Richard Levitte 提交于
PR: 428
-
- 29 12月, 2002 1 次提交
-
-
由 Richard Levitte 提交于
-
- 09 12月, 2002 2 次提交
-
-
由 Richard Levitte 提交于
-
由 Geoff Thorpe 提交于
- a patch to fix a memory leak in rsa_gen.c - a note about compiler warnings with unions - a note about improving structure element names This applies his patch and implements a solution to the notes.
-
- 08 12月, 2002 1 次提交
-
-
由 Geoff Thorpe 提交于
key-generation and prime-checking functions. Rather than explicitly passing callback functions and caller-defined context data for the callbacks, a new structure BN_GENCB is defined that encapsulates this; a pointer to the structure is passed to all such functions instead. This wrapper structure allows the encapsulation of "old" and "new" style callbacks - "new" callbacks return a boolean result on the understanding that returning FALSE should terminate keygen/primality processing. The BN_GENCB abstraction will allow future callback modifications without needing to break binary compatibility nor change the API function prototypes. The new API functions have been given names ending in "_ex" and the old functions are implemented as wrappers to the new ones. The OPENSSL_NO_DEPRECATED symbol has been introduced so that, if defined, declaration of the older functions will be skipped. NB: Some openssl-internal code will stick with the older callbacks for now, so appropriate "#undef" logic will be put in place - this is in case the user is *building* openssl (rather than *including* its headers) with this symbol defined. There is another change in the new _ex functions; the key-generation functions do not return key structures but operate on structures passed by the caller, the return value is a boolean. This will allow for a smoother transition to having key-generation as "virtual function" in the various ***_METHOD tables.
-
- 06 12月, 2002 1 次提交
-
-
由 Richard Levitte 提交于
anything.
-
- 01 12月, 2002 1 次提交
-
-
由 Richard Levitte 提交于
-
- 29 11月, 2002 2 次提交
-
-
由 Richard Levitte 提交于
PR: 360
-
由 Richard Levitte 提交于
always give the expected result on some platforms.
-
- 13 11月, 2002 1 次提交
-
-
由 Ben Laurie 提交于
-
- 04 11月, 2002 1 次提交
-
-
由 Bodo Möller 提交于
Submitted by: Nils Larsch
-
- 09 10月, 2002 1 次提交
-
-
由 Richard Levitte 提交于
give it. For 0.9.7 and up, that means util/domd needs to remove those double dashes from the argument list when gcc is used to find the dependencies.
-
- 09 8月, 2002 1 次提交
-
-
由 Bodo Möller 提交于
-
- 30 7月, 2002 1 次提交
-
-
由 Lutz Jänicke 提交于
-
- 15 7月, 2002 1 次提交
-
-
由 Bodo Möller 提交于
(the same keys can be used for ECC schemes other than ECDSA) and add some new options. Similarly, use string "EC PARAMETERS" instead of "ECDSA PARAMETERS" in 'PEM' format. Fix ec_asn1.c (take into account the desired conversion form). 'make update'. Submitted by: Nils Larsch
-
- 28 6月, 2002 1 次提交
-
-
由 Richard Levitte 提交于
handled properly. Part of PR 75
-
- 10 3月, 2002 1 次提交
-
-
由 Dr. Stephen Henson 提交于
Make {RSA,DSA,DH}_new_method obtain and release an ENGINE functional reference in all cases.
-