aboutsummaryrefslogtreecommitdiff
path: root/crypto/ecdsa/ecs_asn1.c
AgeCommit message (Collapse)AuthorFilesLines
2005-04-29hide the definition of ECDSA_METHOD and ECDSA_DATA (and mutatis mutandisNils Larsch1-1/+1
for ecdh)
2002-08-07use a generic EC_KEY structure (EC keys are not ECDSA specific)Bodo Möller1-321/+0
Submitted by: Nils Larsch
2002-07-26Use SEC1 format for EC private keys.Bodo Möller1-80/+112
This is not ECDSA specific, so it's now PEM_STRING_ECPRIVATEKEY etc. Submitted by: Nils Larsch <nlarsch@compuserve.de>
2002-06-10move ECC ASN1 that is not specific to ECDSA into crypto/ec/,Bodo Möller1-484/+163
and make some appropriate changes to the EC library. Submitted by: Nils Larsch
2002-04-17'version' is not optional in the encodingBodo Möller1-8/+3
Submitted by: Nils Larsch
2002-04-17'version' is not optional in the encodingBodo Möller1-1/+1
Submitted by: Nils Larsch
2002-04-12ECDSA representation bugfixesBodo Möller1-1/+1
Submitted by: Nils Larsch
2002-04-09fix ECDSA handlingBodo Möller1-84/+41
Submitted by: Nils Larsch
2002-03-25fix warningsBodo Möller1-0/+11
Submitted by: Nils Larsch
2002-03-19Fix typo.Bodo Möller1-2/+2
Submitted by: Nils Larsch
2002-03-18Fix bugs and typos.Bodo Möller1-19/+29
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-02-20Instead of casting a lvalue, let's constify meth.Richard Levitte1-2/+2
2002-02-20simplificationsBodo Möller1-24/+3
Submitted by: Nils Larsch
2002-02-20Comparing a pointer (data) with 0 using > is incorrect. The changedRichard Levitte1-1/+3
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 Levitte1-1/+1
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-14EC_GROUP_get_group_by_name() is now called EC_GROUP_new_by_name()Bodo Möller1-1/+1
2002-02-13ECDSA supportBodo Möller1-0/+723
Submitted by: Nils Larsch <nla@trustcenter.de>