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
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-11adding xof_length for b2x supportJP Aumasson
2016-06-11remove unused code, varsSamuel Neves
2016-06-11outlen in blake2xx_final should be the output buffer size, not the hash lengthSamuel Neves
2016-06-11api cleanup, sse editionSamuel 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-04-06blake2*_final() should return an error if called twiceFrank Denis
2016-02-29Changed copyright of Samuel's code to 3-license version suggested by ZookoBill Cox
2016-01-20Consistent checks at blake2x_final (reported by Bill Cox)Samuel Neves
2015-11-05Merge pull request #3 from neheb/masterSamuel Neves
Fix makefiles + bench fix
2015-10-15consistent checksJP Aumasson
2015-05-29fix flags on architectures with < 32-bit intSamuel 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-03-12Fix compilation if ref used in benchMangix
2013-02-01Release 2013-01-31CodesInChaos