aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib/hash/checksum/adler32/adler32.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Add HashFunction::copy_stateJack Lloyd2017-05-221-0/+5
| | | | See GH #1037
* Convert to using standard uintN_t integer typesJack Lloyd2016-12-181-6/+6
| | | | | | Renames a couple of functions for somewhat better name consistency, eg make_u32bit becomes make_uint32. The old typedefs remain for now since probably lots of application code uses them.
* Mass-prefix member vars with m_René Korthaus2016-01-081-3/+3
|
* Internal header cleanupsJack Lloyd2015-09-191-1/+1
| | | | Only user-visible change is the removal of get_byte.h
* Fix static lib registration for block, hash, mac, stream, kdfJack Lloyd2015-09-101-2/+0
| | | | | | | | | | | The support problems from having static libraries not work in the obvious way will be endless trouble. Instead have each set of registrations tag along in a source file for the basic type, at the cost of some extra ifdefs. On shared libs this is harmless - everything is going into the shared object anyway. With static libs, this means pulling in a single block cipher pulls in the text of all the them. But that's still strictly better than the amalgamation (which is really pulling in everything), and it works (unlike status quo).
* Clean up root dir, remove some unneeded dependencieslloyd2015-02-051-0/+83