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
path: root/ref
AgeCommit message (Collapse)Author
2021-04-21Avoid MSVC warning C4804Kai Köhne
Fixes warnings like blake2.h(140): warning C4804: '/': unsafe use of type 'bool' in operation blake2.h(141): warning C4804: '/': unsafe use of type 'bool' in operation
2018-05-09Update blake2-impl.hmjvk
2018-02-14syntax correctionKrishna
2017-03-07issue #41Samuel Neves
2016-12-03keylength=0 in B2 instances in b2x*JP Aumasson
2016-12-02typosJP Aumasson
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-11-09Address bug with small blake2*p output sizes (see #36)Samuel Neves
2016-10-12unkeyed apib2xSamuel Neves
2016-10-12consistencyJP Aumasson
2016-10-12check final return valueJP Aumasson
2016-10-12formatting, more c89Samuel Neves
2016-10-12c89 complianceJP Aumasson
2016-10-12-Wall, clean katsJP Aumasson
2016-10-12replace some c99ismsSamuel Neves
2016-10-11fixed json input displayJP Aumasson
2016-10-11bug in key-less b2xJP Aumasson
2016-10-11copyright noticeJP Aumasson
2016-10-11json katsJP Aumasson
2016-10-11streaming api prototypesJP Aumasson
2016-10-11b2xb and testsJP Aumasson
2016-10-11b2xs tests okJP Aumasson
2016-10-11b2s xof unkeyed katsJP Aumasson
2016-10-11b2xs test proceduresJP Aumasson
2016-10-11length bugSamuel Neves
2016-10-11style, consistency, wipSamuel Neves
2016-10-11basic b2xs and b2xbJP Aumasson
2016-10-11adding xof_length for b2x supportJP Aumasson
2016-06-11remove unused code, varsSamuel Neves
2016-06-11adjust api in katsSamuel Neves
2016-06-11outlen in blake2xx_final should be the output buffer size, not the hash lengthSamuel Neves
2016-06-11test streaming apiSamuel Neves
2016-06-11api cleanup, sse editionSamuel Neves
2016-06-11api cleanupSamuel Neves
2016-06-11tidy upSamuel Neves
2016-06-11fix conflictsSamuel Neves
2016-06-10fix kat paths; better sse2 detectionSamuel Neves
2016-04-22sse kats, reorgJP Aumasson
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-02-09Do not pack blake2_state structsJason A. Donenfeld
While the param structs need to be packed, because they're compressed as a byte stream, the state structs do not have this requirement. As such, the compiler likely can emit more efficient code in certain circumstances when it can apply the ordinary struct alignment rules.
2016-01-20Consistent checks at blake2x_final (reported by Bill Cox)Samuel Neves
2015-12-12replace secure_zero_memorySamuel Neves
2015-11-05Merge pull request #3 from neheb/masterSamuel Neves
Fix makefiles + bench fix
2015-11-05fix issue #11Samuel Neves
2015-10-15consistent checksJP Aumasson
2015-06-11Remove unnecessary alignment directivesSamuel Neves
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