aboutsummaryrefslogtreecommitdiff
path: root/crypto/ecdsa
AgeCommit message (Collapse)AuthorFilesLines
2007-01-21Constify version strings and some structures.Dr. Stephen Henson1-1/+1
2006-11-21Update from 0.9.8 stable. Eliminate duplicate error codes.Dr. Stephen Henson1-7/+4
2006-10-04return an error if the supplied precomputed values lead to an invalid signatureNils Larsch3-2/+17
2006-02-13fix typo: pass pre-computed parameters to the underlying signature function; ↵Nils Larsch1-1/+1
thanks to Lucas Newman
2006-01-29add additional checks + cleanupNils Larsch1-2/+6
Submitted by: David Hartman <david_hartman@symantec.com>
2005-12-18Missing CFLAG in couple of depend: targets.Andy Polyakov1-1/+1
PR: 1247 Submitted by: Doug Kaufman
2005-09-19cleanup doxygen commentsNils Larsch1-103/+90
2005-07-17fix typoNils Larsch1-1/+1
2005-07-16makeNils Larsch1-6/+1
./configure no-deprecated [no-dsa] [no-dh] [no-ec] [no-rsa] make depend all test work again PR: 1159
2005-06-23Wrap the inclusion of openssl/engine.h with a protective check forRichard Levitte1-0/+2
the absence of OPENSSL_NO_ENGINE.
2005-05-20fix typo, add prototypeNils Larsch1-1/+2
2005-05-16Further BUILDENV refinement, further fool-proofing of Makefiles andAndy Polyakov1-56/+29
[most importantly] put back dependencies accidentaly eliminated in check-in #13342.
2005-05-16ecc api cleanup; summary:Nils Larsch6-116/+140
- hide the EC_KEY structure definition in ec_lcl.c + add some functions to use/access the EC_KEY fields - change the way how method specific data (ecdsa/ecdh) is attached to a EC_KEY - add ECDSA_sign_ex and ECDSA_do_sign_ex functions with additional parameters for pre-computed values - rebuild libeay.num from 0.9.7
2005-05-15Fool-proofing MakefilesAndy Polyakov1-4/+1
2005-05-10give EC_GROUP_new_by_nid a more meanigful name:Nils Larsch1-3/+3
EC_GROUP_new_by_nid -> EC_GROUP_new_by_curve_name
2005-05-09Update util/ck_errf.pl script, and have it run automaticallyBodo Möller1-9/+11
during "make errors" and thus during "make update". Fix lots of bugs that util/ck_errf.pl can detect automatically. Various others of these are still left to fix; that's why "make update" will complain loudly when run now.
2005-04-29hide the definition of ECDSA_METHOD and ECDSA_DATA (and mutatis mutandisNils Larsch8-46/+118
for ecdh)
2005-04-26Fix various incorrect error function codes.Bodo Möller4-6/+6
("perl util/ck_errf.pl */*.c */*/*.c" still reports many more.)
2005-04-22more constNils Larsch3-6/+9
2005-04-22- use BN_set_negative and BN_is_negative instead of BN_set_signNils Larsch1-2/+2
and BN_get_sign - implement BN_set_negative as a function - always use "#define BN_is_zero(a) ((a)->top == 0)"
2005-04-12Rebuild error codes.Dr. Stephen Henson1-14/+17
2005-03-30Blow away Makefile.ssl.Ben Laurie1-4/+3
2004-11-02Don't use $(EXHEADER) directly in for loops, as most shells will breakRichard Levitte1-1/+1
if $(EXHEADER) is empty. Notified by many, solution suggested by Carson Gaspar <carson@taltos.org>
2004-10-21Update ECDSA and ECDH for OPENSSL_NO_ENGINE.Geoff Thorpe3-0/+12
Reported by: Maxim Masiutin Submitted by: Nils Larsch
2004-07-16Quick fix.Geoff Thorpe1-1/+1
Submitted by: Nils Larsch
2004-06-14Correct the return codes for ecdsatest.Geoff Thorpe1-4/+4
Submitted by: Nils Larsch Reviewed by: Geoff Thorpe
2004-05-17Deprecate the recursive includes of bn.h from various API headers (asn1.h,Geoff Thorpe3-1/+5
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.
2004-04-19(oops) Apologies all, that last header-cleanup commit was from the wrongGeoff Thorpe1-0/+1
tree. This further reduces header interdependencies, and makes some associated cleanups.
2004-04-19Reduce header interdependencies, initially in engine.h (the rest of theGeoff Thorpe2-5/+9
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.
2004-02-22A cleanup of the ecs_ossl.c code and some (doxygen) comments for ecdsa.hGeoff Thorpe2-149/+254
Submitted by: Nils Larsch Reviewed by: Geoff Thorpe
2003-12-06Skip a curve with generator of non-prime order.Ulf Möller1-0/+2
Submitted by: Nils Larsch
2003-11-16re-enable the test, keeping the original method for RAND_pseudo_bytesUlf Möller1-3/+1
which is used by BN_DEBUG_RAND Submitted by: Nils Larsch
2003-11-16The x9.62 tests replace the PRNG with specific numbers,Ulf Möller1-3/+8
so don't run them if BN_DEBUG_RAND is defined. Also, fix another small bug. Submitted by: Nils Larsch
2003-05-01make updateRichard Levitte1-30/+42
2003-03-20Make sure we get the definition of OPENSSL_NO_ECDSA.Richard Levitte2-0/+4
2003-03-20Make sure we get the definition of OPENSSL_NO_ERR.Richard Levitte1-0/+1
2003-01-15Fix initialization sequence to prevent freeing of unitialized objects.Lutz Jänicke1-2/+5
Submitted by: Nils Larsch <nla@trustcenter.de> PR: 459
2002-12-08This is a first-cut at improving the callback mechanisms used inGeoff Thorpe1-1/+7
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.
2002-12-04Don't compute timings here, we can do this elsewhere.Bodo Möller1-453/+352
Include X9.62 signature examples. Submitted by: Nils Larsch
2002-11-28Cleanse memory using the new OPENSSL_cleanse() function.Richard Levitte1-1/+1
I've covered all the memset()s I felt safe modifying, but may have missed some.
2002-11-14make updateRichard Levitte1-4/+6
2002-11-13Security fixes brought forward from 0.9.7.Ben Laurie1-6/+4
2002-11-04implement and use new macros BN_get_sign(), BN_set_sign()Bodo Möller1-2/+4
Submitted by: Nils Larsch
2002-10-29Sun has agreed to removing the covenant language from most files.Bodo Möller1-13/+0
Submitted by: Sheueling Chang <Sheueling.Chang@Sun.COM>
2002-10-28'broken' PKCS #8 format does not apply to ECDSABodo Möller1-45/+0
Submitted by: Nils Larsch
2002-10-09Use double dashes so makedepend doesn't misunderstand the flags weRichard Levitte1-1/+1
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.
2002-08-15Simplify handling of named curves: get rid of EC_GROUP_new_by_name(),Bodo Möller1-18/+18
EC_GROUP_new_by_nid() should be enough. This avoids a lot of redundancy. Submitted by: Nils Larsch
2002-08-10mem* functions are declared in string.h.Richard Levitte1-0/+1
2002-08-09make updateBodo Möller1-18/+20
2002-08-09fix warningsBodo Möller1-0/+9