aboutsummaryrefslogtreecommitdiff
path: root/crypto/ecdh
AgeCommit message (Collapse)AuthorFilesLines
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 Thorpe2-0/+10
Reported by: Maxim Masiutin Submitted by: Nils Larsch
2004-05-17Deprecate the recursive includes of bn.h from various API headers (asn1.h,Geoff Thorpe2-1/+4
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 Thorpe1-3/+6
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.
2003-06-19Unsigned vs. signed fixed.Richard Levitte1-1/+1
2003-06-04Make sure that size_t matches size_t.Richard Levitte1-1/+2
2003-05-01make updateRichard Levitte1-20/+28
2003-03-21Make sure to declare mem*() properly.Richard Levitte1-0/+1
2003-03-20Make sure we get the definition of OPENSSL_NO_ECDH.Richard Levitte1-0/+2
2003-03-20make updateDr. Stephen Henson1-3/+4
2003-03-20Avoid warning.Dr. Stephen Henson1-0/+2
2003-03-20make updateDr. Stephen Henson1-3/+4
2003-02-28- new ECDH_compute_key interface (KDF is no longer a fixed built-in)Bodo Möller6-34/+72
- bugfix: in ECDH_compute_key, pad x coordinate with leading zeros if necessary
2003-02-22remove some more useless code. The mingw target can now be builtUlf Möller1-8/+0
under cygwin.
2002-11-28Have all tests use EXIT() to exit rather than exit(), since the latter doesn'tRichard Levitte1-2/+5
always give the expected result on some platforms.
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-14fix outputBodo Möller1-2/+2
Submitted by: Nils Larsch
2002-11-13Security fixes brought forward from 0.9.7.Ben Laurie1-6/+4
2002-11-06print less output (no details unless a test failed)Bodo Möller1-19/+91
Submitted by: Nils Larsch
2002-10-29Sun has agreed to removing the covenant language from most files.Bodo Möller5-65/+0
Submitted by: Sheueling Chang <Sheueling.Chang@Sun.COM>
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-22#if out unused function to shut the compiler up.Dr. Stephen Henson1-0/+5
2002-08-15Simplify handling of named curves: get rid of EC_GROUP_new_by_name(),Bodo Möller1-16/+16
EC_GROUP_new_by_nid() should be enough. This avoids a lot of redundancy. Submitted by: Nils Larsch
2002-08-09.cvsignore for crypto/ecdhBodo Möller1-0/+2
2002-08-09make updateBodo Möller1-4/+6
2002-08-09fix warningsBodo Möller1-0/+1
2002-08-09use 0, not NULLBodo Möller1-1/+1
Submitted by: Nils Larsch
2002-08-09Add ECDH support.Bodo Möller7-0/+1197
Additional changes: - use EC_GROUP_get_degree() in apps/req.c - add ECDSA and ECDH to apps/speed.c - adds support for EC curves over binary fields to ECDSA - new function EC_KEY_up_ref() in crypto/ec/ec_key.c - reorganize crypto/ecdsa/ecdsatest.c - add engine support for ECDH - fix a few bugs in ECDSA engine support Submitted by: Douglas Stebila <douglas.stebila@sun.com>