- 04 2月, 2006 1 次提交
-
-
由 Dr. Stephen Henson 提交于
-
- 02 9月, 2005 1 次提交
-
-
由 Dr. Stephen Henson 提交于
-
- 16 7月, 2005 1 次提交
-
-
由 Nils Larsch 提交于
./configure no-deprecated [no-dsa] [no-dh] [no-ec] [no-rsa] make depend all test work again PR: 1159
-
- 27 5月, 2005 1 次提交
-
-
由 Bodo Möller 提交于
-
- 26 5月, 2005 1 次提交
-
-
由 Bodo Möller 提交于
-
- 17 5月, 2005 1 次提交
-
-
由 Andy Polyakov 提交于
[most importantly] put back dependencies accidentaly eliminated in check-in #13342.
-
- 16 5月, 2005 2 次提交
-
-
由 Bodo Möller 提交于
timing attacks. BN_FLG_EXP_CONSTTIME requests this algorithm, and this done by default for RSA/DSA/DH private key computations unless RSA_FLAG_NO_EXP_CONSTTIME/DSA_FLAG_NO_EXP_CONSTTIME/ DH_FLAG_NO_EXP_CONSTTIME is set. Submitted by: Matthew D Wood Reviewed by: Bodo Moeller
-
由 Andy Polyakov 提交于
-
- 09 5月, 2005 1 次提交
-
-
由 Bodo Möller 提交于
-
- 27 4月, 2005 2 次提交
-
-
由 Dr. Stephen Henson 提交于
casts.
-
由 Dr. Stephen Henson 提交于
The function rsa_eay_mont_helper() has been removed because it is no longer needed after this change.
-
- 23 4月, 2005 2 次提交
-
-
由 Ben Laurie 提交于
-
由 Nils Larsch 提交于
and BN_get_sign - implement BN_set_negative as a function - always use "#define BN_is_zero(a) ((a)->top == 0)"
-
- 13 4月, 2005 1 次提交
-
-
由 Dr. Stephen Henson 提交于
-
- 11 4月, 2005 1 次提交
-
-
由 Richard Levitte 提交于
-
- 31 3月, 2005 1 次提交
-
-
由 Ben Laurie 提交于
-
- 30 3月, 2005 1 次提交
-
-
由 Ben Laurie 提交于
-
- 28 3月, 2005 1 次提交
-
-
由 Nils Larsch 提交于
which cannot be evaluated in an if statement
-
- 05 12月, 2004 1 次提交
-
-
由 Dr. Stephen Henson 提交于
-
- 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
-