aboutsummaryrefslogtreecommitdiffstats
path: root/src/pubkey/eckaeg/eckaeg.h
Commit message (Collapse)AuthorAgeFilesLines
* Rename ECKAEG to ECDH. As far as I can tell they are the same algorithm,lloyd2010-03-021-100/+0
| | | | | I'm not sure where the old name came from though as literally the only hits for it on Google are botan-related.
* Kill ECKAEG_Oplloyd2010-03-021-12/+11
|
* Remove auto_ptr from ECC key typeslloyd2010-03-021-45/+8
|
* Make set_all_values in {ECDSA,ECKAEG}_{Public,Private}Key all non-virtual;lloyd2009-11-101-3/+4
| | | | | | | virtual-ness not needed, and was overriding/overloading by argument which doesn't actually work in C++ and only happened to work because it was only ever used with the version implemented in that same class. ICC was warning, too. Make non-virtual.
* Thomas Moschny passed along a request from the Fedora packagers which camelloyd2009-03-301-7/+9
| | | | | | | | | | | | | | | 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).
* Add ECKAEG benchmark. Fix several problems found in ECKAEG key (had pure ↵lloyd2008-10-131-2/+11
| | | | virtuals)
* Remove spurious trailing ; after blockslloyd2008-10-131-3/+3
|
* Add BOTAN_DLL macro to public class definitions that were missing it.lloyd2008-10-091-4/+4
|
* Reformattinglloyd2008-10-081-20/+24
|
* Split ecdsa module into ecc_key, ecdsa, eckaeglloyd2008-10-081-0/+122
Add actual implementations (from InSiTo) for ECDSA_Operation and ECKAEG_Operation.