aboutsummaryrefslogtreecommitdiffstats
path: root/src/hash/sha2_64/sha2_64.cpp
Commit message (Collapse)AuthorAgeFilesLines
* Shuffle things around. Add NIST X.509 test to build.lloyd2014-01-011-242/+0
|
* Fairly huge update that replaces the old secmem types with std::vectorlloyd2012-05-181-1/+1
| | | | | | using a custom allocator. Currently our allocator just does new/delete with a memset before deletion, and the mmap and mlock allocators have been removed.
* Maintainer mode warning cleanups, mostly for C style casts which Illoyd2011-04-181-0/+4
| | | | added to the flags here.
* Indentlloyd2011-03-211-6/+6
|
* Use the same mesasge expansion trick in SHA-512. Performance onlloyd2011-03-131-115/+117
| | | | an i7-860 goes from 197 MiB/s to 256 - a 30% improvement!
* Use output_length() instead of OUTPUT_LENGTH pseudo-propertylloyd2010-10-131-2/+2
|
* Use size_t for BufferedComputation::add_datalloyd2010-10-121-9/+9
|
* Split SHA-2 into 32 and 64 bit versions; they are totally independentlloyd2010-09-301-0/+236
of each other anyway.