aboutsummaryrefslogtreecommitdiffstats
path: root/src/hash/hash.h
Commit message (Collapse)AuthorAgeFilesLines
* Doxygenlloyd2012-10-301-2/+2
|
* Mass disable copy constructors and assignment on all algos until proven ↵lloyd2010-11-041-3/+0
| | | | safe/useful
* Add new top-level algorithm which provides basic functionality: namelloyd2010-11-011-12/+3
| | | | | | | | query, clearing, and cloning. Applies to ciphers, hashes, MACs, and PBKDFs. May extend to KDFs later as well. A single combined hierarchy in particular will make the algo_factory much simpler.
* Remove BufferedComputation::OUTPUT_LENGTHlloyd2010-10-291-9/+1
|
* More size_t. Document changeslloyd2010-10-131-1/+1
|
* Remove HashFunction::HASH_BLOCK_SIZE entirelylloyd2010-10-131-14/+9
|
* Remove most uses of HASH_BLOCK_SIZElloyd2010-10-131-1/+6
|
* Replace "@return a blah" and "@return the blah" with just "@return blah"lloyd2010-06-161-1/+1
|
* More Doxygen commentslloyd2010-06-161-0/+5
|
* Use "/*" instead of "/**" in starting comments at the begining of a file.lloyd2010-06-071-1/+1
| | | | | This caused Doxygen to think this was markup meant for it, which really caused some clutter in the namespace page.
* Remove all exception specifications. The way these are designed in C++ islloyd2009-10-221-1/+1
| | | | | | 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.
* Thomas Moschny passed along a request from the Fedora packagers which camelloyd2009-03-301-0/+2
| | | | | | | | | | | | | | | 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 redundent includeslloyd2008-11-091-1/+0
|
* Move hash.h from src/core to src/hashlloyd2008-11-081-0/+51
Inline constructors for BlockCipher and StreamCipher