Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/BLAKE2/BLAKE2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2018-05-09Update cast of load16mjvk
Bitwise operations promote the cast to uint16_t to int. So to be consistent, first cast to uint to keep unsignedness and prevent implicit promotion. Then cast back to uint16_t after all bitwise operations are completed. This prevents compiler warnings, unneccessary casts and in the case of right shifting (not the case here) unexpected behaviour.
2016-11-10maint: strip various trailing whitespacePádraig Brady
This falls afoul of various commit git commit hooks, so strip trailing whitespace at EOL and EOF.
2016-10-11b2x added to sse/JP Aumasson
2016-06-11remove unused code, varsSamuel Neves
2016-06-11api cleanupSamuel Neves
2016-06-11tidy upSamuel Neves
2016-04-22Make BLAKE2 code C89 and MSVC friendlyChristian Heimes
This patch makes the BLAKE2 reference implementation compatible with C89 compilers and MSVC. 1) Use C comments (/* */) instead of C++ comments. 2) No declarations after statements. All variables are declared on the top of a block. 3) Optional inline with BLAKE2_LOCAL_INLINE() macro. Signed-off-by: Christian Heimes <christian@python.org>
2016-02-29Changed copyright of Samuel's code to 3-license version suggested by ZookoBill Cox
2015-12-12replace secure_zero_memorySamuel Neves
2014-08-06Check for overflow of outlen in blake2{s,b}_finalSamuel Neves
Fix warnings with -Wcast-qual Fix blake2{sp,bp}_final's return value
2013-02-01Release 2013-01-31CodesInChaos