aboutsummaryrefslogtreecommitdiffstats
path: root/src/pubkey/eckaeg/eckaeg.cpp
Commit message (Collapse)AuthorAgeFilesLines
* propagate from branch 'net.randombit.botan' (head ↵lloyd2009-09-171-1/+0
|\ | | | | | | | | | | 92e05ab242e4b6998d685961c53700534a673bce) to branch 'net.randombit.botan.c++0x' (head 27ce37b971ec5cb1f80a9a95b13d5a951b96653b)
| * Split up util.h into 3 fileslloyd2009-09-171-1/+0
| | | | | | | | | | | | | | - rounding.h (round_up, round_down) - workfactor.h (dl_work_factor) - timer.h (system_time) And update all users of the previous util.h
* | propagate from branch 'net.randombit.botan' (head ↵lloyd2009-09-081-2/+2
|\ \ | |/ |/| | | | | | | 5cadcc57872bef55226579df57349fe09a93d1f5) to branch 'net.randombit.botan.c++0x' (head d1747f0394aa4442e5b32b9102b830e1a86f0e5a)
| * Replace the (deprecated) auto_ptr with unique_ptr.lloyd2009-04-011-2/+2
| | | | | | | | | | | | 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.
* | Replace 'XXX' and other such notes with FIXME for easy greppinglloyd2009-07-221-2/+3
|/
* Thomas Moschny passed along a request from the Fedora packagers which camelloyd2009-03-301-8/+10
| | | | | | | | | | | | | | | 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-34/+48
| | | | virtuals)
* Move ECDSA_Signature into CVC module. It is not used by ECDSA directly now.lloyd2008-10-111-1/+1
| | | | Change several ECC functions to return const references instead of const values.
* Split ecdsa module into ecc_key, ecdsa, eckaeglloyd2008-10-081-0/+135
Add actual implementations (from InSiTo) for ECDSA_Operation and ECKAEG_Operation.