aboutsummaryrefslogtreecommitdiffstats
path: root/src/pubkey/ecc_key
Commit message (Collapse)AuthorAgeFilesLines
* propagate from branch 'net.randombit.botan' (head ↵lloyd2009-07-211-7/+8
|\ | | | | | | | | | | 95eb8083f5884531e5ca0667388f8a6fb6d05c41) to branch 'net.randombit.botan.c++0x' (head 56e105e678540c8bcafa4d0198c19a9489fbf8d1)
| * Move some files around to break up dependencies between directorieslloyd2009-07-161-0/+1
| |
| * Add a script that reads the output of print_deps.py and rewriteslloyd2009-07-151-6/+7
| | | | | | | | | | | | the info.txt files with the right module dependencies. Apply it across the codebase.
| * Move the contents of pubkey/pubkey (which was kind of a catch-all tolloyd2009-07-151-1/+0
| | | | | | | | | | | | | | just toplevel pubkey). This was a convention I realized made sense sometime on when I was first doing the modularization changes. Move pkcs8.* and x509_key.* to pk_codecs
* | Replace the (deprecated) auto_ptr with unique_ptr.lloyd2009-04-012-3/+3
|/ | | | | | This was mostly a s/auto_ptr/unique_ptr/, except in the CVC code and one function in ECDSA, which relied on auto_ptr's move semantics (ugh) and had to be modified in various ways.
* Thomas Moschny passed along a request from the Fedora packagers which camelloyd2009-03-302-16/+20
| | | | | | | | | | | | | | | up during the Fedora submission review, that each source file include some text about the license. One handy Perl script later and each file now has the line Distributed under the terms of the Botan license after the copyright notices. While I was in there modifying every file anyway, I also stripped out the remainder of the block comments (lots of astericks before and after the text); this is stylistic thing I picked up when I was first learning C++ but in retrospect it is not a good style as the structure makes it harder to modify comments (with the result that comments become fewer, shorter and are less likely to be updated, which are not good things).
* Reformat for shorter lineslloyd2008-11-071-5/+15
|
* Remove spurious trailing ; after blockslloyd2008-10-131-1/+1
|
* Move ECDSA_Signature into CVC module. It is not used by ECDSA directly now.lloyd2008-10-112-92/+94
| | | | Change several ECC functions to return const references instead of const values.
* Add BOTAN_DLL macro to public class definitions that were missing it.lloyd2008-10-091-2/+2
|
* Fix problems with disabling ECDSAlloyd2008-10-081-0/+56
|
* Reformattinglloyd2008-10-081-2/+2
|
* Split ecdsa module into ecc_key, ecdsa, eckaeglloyd2008-10-083-0/+370
Add actual implementations (from InSiTo) for ECDSA_Operation and ECKAEG_Operation.