aboutsummaryrefslogtreecommitdiffstats
path: root/src/hash/par_hash
Commit message (Collapse)AuthorAgeFilesLines
* Shuffle things around. Add NIST X.509 test to build.lloyd2014-01-013-142/+0
|
* Give everything setting a feature test macro in build.h a version codelloyd2013-11-281-1/+1
| | | | | | so application code can check for the specific API it expects without having to keep track of what versions APIs x,y,z changed. Arbitrarily set all current API versions to 20131128.
* Add string_join; inverse of split_on.lloyd2011-06-171-21/+19
| | | | | | | | | Use auto in a few more places. Use GCC 4.6's range-for Delete rather than hide Algorithm copy constructor/assignment Move version to more or less randomly chosen 1.99 so there is no ambiguity about versions.
* Post-merge fixupslloyd2010-11-041-1/+1
|
* propagate from branch 'net.randombit.botan' (head ↵lloyd2010-11-041-17/+22
|\ | | | | | | | | | | 303b2518a80553214b1e5ab4d9b96ef54629cbc7) to branch 'net.randombit.botan.c++0x' (head d734eefabe4816be4dd3e3e6e7bb13b7ab5be148)
| * propagate from branch 'net.randombit.botan' (head ↵lloyd2010-10-131-19/+24
| |\ | | | | | | | | | | | | | | | 2898d79f992f27a328a3e41d34b46eb1052da0de) to branch 'net.randombit.botan.c++0x' (head 6cba76268fd69a73195760c021b7f881b8a6552c)
| | * propagate from branch 'net.randombit.botan' (head ↵lloyd2010-06-171-3/+6
| | |\ | | | | | | | | | | | | | | | | | | | | 294e2082ce9231d6165276e2f2a4153a0116aca3) to branch 'net.randombit.botan.c++0x' (head 0b695fad10f924601e07b009fcd781191fafcb28)
| | * \ propagate from branch 'net.randombit.botan' (head ↵lloyd2009-11-021-18/+23
| | |\ \ | | | | | | | | | | | | | | | | | | | | | | | | | 2773c2310e8c0a51975987a2dd6c5824c8d43882) to branch 'net.randombit.botan.c++0x' (head f13cf5d7e89706c882604299b508f356c20aae3a)
| | | * \ propagate from branch 'net.randombit.botan' (head ↵lloyd2009-09-301-18/+23
| | | |\ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 8a5eb02c2e451fc983f234f7ba2f023f5a7d294f) to branch 'net.randombit.botan.c++0x' (head e18cd411269e15638df3298d6a4165446e7ca529)
| | | | * | A few experiments with auto keyword type inference. Looks like things willlloyd2009-04-011-18/+23
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | be much cleaner, though I am looking forward to the new for syntax which will simplify a lot of these uses further.
* | | | | | Remove BufferedComputation::OUTPUT_LENGTHlloyd2010-10-292-18/+14
|/ / / / /
* | | | | Use output_length() instead of OUTPUT_LENGTH pseudo-propertylloyd2010-10-131-2/+2
| | | | |
* | | | | Use size_t for BufferedComputation::add_datalloyd2010-10-122-21/+21
| |_|_|/ |/| | |
* | | | More Doxygen commentslloyd2010-06-161-1/+4
| | | |
* | | | More Doxygen updates/fixeslloyd2010-06-151-2/+2
|/ / /
* | | Remove the 'realname' attribute on all modules and cc/cpu/os info files.lloyd2009-10-291-2/+0
| | | | | | | | | | | | | | | Pretty much useless and unused, except for listing the module names in build.h and the short versions totally suffice for that.
* | | Remove all exception specifications. The way these are designed in C++ islloyd2009-10-222-2/+2
|/ / | | | | | | | | | | just too fragile and not that useful. Something like Java's checked exceptions might be nice, but simply killing the process entirely if an unexpected exception is thrown is not exactly useful for something trying to be robust.
* / Remove add blocks from hash function info.txt fileslloyd2009-09-291-7/+0
|/
* Thomas Moschny passed along a request from the Fedora packagers which camelloyd2009-03-302-35/+39
| | | | | | | | | | | | | | | 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).
* Remove lookup from parallel hash constructionlloyd2008-11-082-15/+15
|
* Move the declaration of the HashFunction base class to a new header hash.hlloyd2008-11-081-1/+1
| | | | (from base.h)
* Rename all modinfo.txt files to info.txt, since they are all (none) oflloyd2008-09-291-0/+0
| | | | | them modules now. In any case there is no distinction so info.txt seems better.
* Move allocator code to secalloc/allocators modulelloyd2008-09-283-0/+145
Move paralle hash construction to par_hash module in hash directory