aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/ec/ec_key.c
Commit message (Collapse)AuthorAgeFilesLines
* Fix EC_KEY_check_key.Andy Polyakov2008-09-231-12/+4
|
* simplify EC_KEY_dupNils Larsch2005-05-171-34/+4
|
* ecc api cleanup; summary:Nils Larsch2005-05-161-4/+122
| | | | | | | | | | - 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
* Fix various incorrect error function codes.Bodo Möller2005-04-261-1/+1
| | | | ("perl util/ck_errf.pl */*.c */*/*.c" still reports many more.)
* typoBodo Möller2003-02-191-1/+1
| | | | | PR: 511 Submitted by: Eric Cronin
* Cleanse memory using the new OPENSSL_cleanse() function.Richard Levitte2002-11-281-1/+1
| | | | I've covered all the memset()s I felt safe modifying, but may have missed some.
* mem* functions are declared in string.h.Richard Levitte2002-08-101-0/+1
|
* Add ECDH support.Bodo Möller2002-08-091-0/+22
| | | | | | | | | | | | | 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>
* use a generic EC_KEY structure (EC keys are not ECDSA specific)Bodo Möller2002-08-071-0/+354
Submitted by: Nils Larsch