summaryrefslogtreecommitdiffstats
path: root/crypto/ecdsa
AgeCommit message (Collapse)Author
2002-10-09Use double dashes so makedepend doesn't misunderstand the flags weRichard 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.
2002-08-15Simplify handling of named curves: get rid of EC_GROUP_new_by_name(),Bodo Möller
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 Levitte
2002-08-09make updateBodo Möller
2002-08-09fix warningsBodo Möller
2002-08-09Add ECDH support.Bodo Möller
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>
2002-08-07use a generic EC_KEY structure (EC keys are not ECDSA specific)Bodo Möller
Submitted by: Nils Larsch
2002-08-01make updateRichard Levitte
2002-07-30"make update"Lutz Jänicke
2002-07-26Use SEC1 format for EC private keys.Bodo Möller
This is not ECDSA specific, so it's now PEM_STRING_ECPRIVATEKEY etc. Submitted by: Nils Larsch <nlarsch@compuserve.de>
2002-06-18Implement handling of EC parameter seeds (new functionsBodo Möller
EC_GROUP_set_seed(), EC_GROUP_get0_seed(), EC_GROUP_get_seed_len()). New functions ECPKParameters_print(), ECPKParameters_print_fp(). Submitted by: Nils Larsch
2002-06-11Fix warnings.Ben Laurie
2002-06-10move ECC ASN1 that is not specific to ECDSA into crypto/ec/,Bodo Möller
and make some appropriate changes to the EC library. Submitted by: Nils Larsch
2002-06-10remove unnecessary calls to EC_POINT_copy()Bodo Möller
2002-04-20No point constifying an int.Richard Levitte
Notified by Bernd Matthes <bernd.matthes@gemplus.com>
2002-04-17'version' is not optional in the encodingBodo Möller
Submitted by: Nils Larsch
2002-04-17'version' is not optional in the encodingBodo Möller
Submitted by: Nils Larsch
2002-04-12ECDSA representation bugfixesBodo Möller
Submitted by: Nils Larsch
2002-04-09fix ECDSA handlingBodo Möller
Submitted by: Nils Larsch
2002-04-06make update (libeay.num has been edited to match 0.9.7-stable)Richard Levitte
2002-03-25fix warningsBodo Möller
Submitted by: Nils Larsch
2002-03-19Fix typo.Bodo Möller
Submitted by: Nils Larsch
2002-03-18Fix bugs and typos.Bodo Möller
Add some WTLS curves. New function EC_GROUP_check() (this will probably be implemented differently soon). Submitted by: Nils Larsch Reviewed by: Bodo Moeller
2002-03-14Fixes for 'no-hw' combined with 'no-SOME_CIPHER'.Bodo Möller
Fix dsaparam usage output. Submitted by: Nils Larsch
2002-03-07Add more curves.Bodo Möller
Submitted by: Nils Larsch Remove unnecessary 'const'.
2002-02-20Instead of casting a lvalue, let's constify meth.Richard Levitte
2002-02-20simplificationsBodo Möller
Submitted by: Nils Larsch
2002-02-20Comparing a pointer (data) with 0 using > is incorrect. The changedRichard Levitte
comparison doesn't look right, but at least it compiles. It would be nice if the one who knows what this is supposed to do changed it to do it correctly
2002-02-16The macro IMPLEMENT_ASN1_FUNCTIONS_const already contains an ending ;,Richard Levitte
so do not add one after the expansion, since ANSI C doesn't allow ;; at this level (or at least, so tells me gcc).
2002-02-16Local `time' shadows the global function `time()'. Rename the localRichard Levitte
variable to `tim' (and, as a matter of consequence, `time_d' to `tim_d').
2002-02-14make it possible to disable memory checking for timingsBodo Möller
2002-02-14EC_GROUP_get_group_by_name() is now called EC_GROUP_new_by_name()Bodo Möller
2002-02-13ECDSA supportBodo Möller
Submitted by: Nils Larsch <nla@trustcenter.de>