aboutsummaryrefslogtreecommitdiffstats
path: root/crypto/ec/ec_ameth.c
Commit message (Collapse)AuthorAgeFilesLines
* Add algorithm specific signature printing. An individual ASN1 method canDr. Stephen Henson2010-03-061-0/+1
| | | | | | | | | | | now print out signatures instead of the standard hex dump. More complex signatures (e.g. PSS) can print out more meaningful information. Sample DSA version included that prints out the signature parameters r, s. [Note EVP_PKEY_ASN1_METHOD is an application opaque structure so adding new fields in the middle has no compatibility issues]
* Revert the size_t modifications from HEAD that had led to moreGeoff Thorpe2008-11-121-2/+2
| | | | | | knock-on work than expected - they've been extracted into a patch series that can be completed elsewhere, or in a different branch, before merging back to HEAD.
* Update obsolete email address...Dr. Stephen Henson2008-11-051-1/+1
|
* More size_tification.Ben Laurie2008-11-011-2/+2
|
* Fix a variety of warnings generated by some elevated compiler-fascism,Geoff Thorpe2008-03-161-0/+1
| | | | OPENSSL_NO_DEPRECATED, etc. Steve, please double-check the CMS stuff...
* And so it begins...Dr. Stephen Henson2008-03-121-0/+22
| | | | | | | | | | Initial support for CMS. Add zlib compression BIO. Add AES key wrap implementation. Generalize S/MIME MIME code to support CMS and/or PKCS7.
* Constify version strings and some structures.Dr. Stephen Henson2007-01-211-1/+1
|
* add support for ecdsa-with-sha256 etc.Nils Larsch2006-12-201-4/+9
|
* Fix various error codes to match functions.Dr. Stephen Henson2006-07-171-2/+2
|
* Add support for default public key digest type ctrl.Dr. Stephen Henson2006-05-071-0/+4
|
* make local function staticNils Larsch2006-04-201-2/+2
|
* Allow public key ASN1 methods to set PKCS#7 SignerInfo structures.Dr. Stephen Henson2006-04-171-1/+24
|
* New utility pkeyparam. Enhance and bugfix algorithm specific parameterDr. Stephen Henson2006-03-281-1/+20
| | | | functions to support it.
* Add support for legacy PEM format private keys in EVP_PKEY_ASN1_METHOD.Dr. Stephen Henson2006-03-231-2/+22
|
* Typo.Dr. Stephen Henson2006-03-231-1/+1
|
* Fix bug in DSA, EC methods.Dr. Stephen Henson2006-03-231-5/+4
|
* Add information and pem strings. Update dependencies.Dr. Stephen Henson2006-03-231-1/+3
|
* Make EVP_PKEY_ASN1_METHOD opaque. Add application level functions toDr. Stephen Henson2006-03-221-0/+1
| | | | initialize it. Initial support for application added public key ASN1.
* Move algorithm specific print code from crypto/asn1/t_pkey.c to separateDr. Stephen Henson2006-03-221-249/+0
| | | | *_prn.c files in each algorithm directory.
* Gather printing routines into EVP_PKEY_ASN1_METHOD.Dr. Stephen Henson2006-03-221-4/+368
|
* Transfer parameter handling and key comparison to algorithm methods.Dr. Stephen Henson2006-03-201-2/+90
|
* Initial support for pluggable public key ASN1 support. Process most publicDr. Stephen Henson2006-03-201-0/+360
key ASN1 handling through a single EVP_PKEY_ASN1_METHOD structure and move the spaghetti algorithm specific code to a single ASN1 module for each algorithm.