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-04-22json compliancejsonJP Aumasson
2016-04-22rm leftoverJP Aumasson
2016-04-22json test vectorsJP Aumasson
2016-04-06Replace size_t by unsigned long for output sizes.Samuel Neves
https://sourceforge.net/p/mingw-w64/wiki2/gnu%20printf/
2016-04-06Merge pull request #21 from jedisct1/check-multiple-finalizationsSamuel Neves
blake2*_final() should return an error if called twice
2016-04-06blake2*_final() should return an error if called twiceFrank Denis
2016-03-12update licensing in READMESamuel Neves
2016-02-29Merge pull request #19 from waywardgeek/masterJP Aumasson
Changed copyright of Samuel's code to 3-license version suggested by …
2016-02-29Changed copyright of Samuel's code to 3-license version suggested by ZookoBill Cox
2016-02-28Merge pull request #17 from Scarletts/masterSamuel Neves
b2sum man page, makefile changes
2016-02-28Merge pull request #18 from DaGenix/errors-in-test-vectorsSamuel Neves
Remove trailing 'ok' from the last line of each test vector file
2016-02-26Remove trailing 'ok' from the last line of each test vector filePalmer Cox
2016-02-20remove comment that slipped inScarlett
2016-02-20add and install b2sum man page, improve makefile portabilityScarlett
2016-02-09Merge pull request #16 from zx2c4/masterSamuel Neves
Do not pack blake2_state structs
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-31Merge pull request #15 from betafive/pbarker/b2sumSamuel Neves
Add digest length argument to b2sum (plus minor improvements)
2016-01-31b2sum: Add digest length argumentPaul Barker
It may be desirable to produce a digest with a shorter length than the default using a BLAKE2 algorithm. For example, the crypto_generichash() function in libsodium uses BLAKE2b but shortens the digest to 256 bits by default and it is useful for debugging to generate similar hashes with b2sum for comparison. The requested digest length is specified in bits, must be a multiple of 8 and cannot exceed the total output length of the selected algoritm. No minimum digest length is enforced. If a shorter-than-default digest length is selected, this is indicated in the output when the '--tag' option is given.
2016-01-20Consistent checks at blake2x_final (reported by Bill Cox)Samuel Neves
2016-01-03Add git ignore filePaul Barker
To simplify development we can ignore all output produced by running 'make' in the b2sum, bench, ref and sse directories. Someone should build the csharp implementation and add output files to .gitignore...
2016-01-03b2sum: Simplify algorithm name printingPaul Barker
2015-12-12replace secure_zero_memorySamuel Neves
2015-11-05signedness mismatchSamuel Neves
2015-11-05Merge pull request #3 from neheb/masterSamuel Neves
Fix makefiles + bench fix
2015-11-05Merge pull request #12 from arzeth/masterSamuel Neves
Improve b2sum
2015-11-05fix issue #11Samuel Neves
2015-10-30b2sum: Output 2 spaces instead of 1Artem Chudinov
To be similar to coreutils' sha256sum.
2015-10-30b2sum: Get rid of two `goto`Artem Chudinov
2015-10-30b2sum: Replace "-a <hash>" with "-a <algo>" in the --help messageArtem Chudinov
2015-10-30b2sum: Support a BSD-style checksum and improve the --help messageArtem Chudinov
2015-10-30b2sum: Support --helpArtem Chudinov
2015-10-30b2sum: Support reading from stdinArtem Chudinov
2015-10-19typosJP Aumasson
2015-10-19adding websiteJP Aumasson
2015-10-15consistent checksJP Aumasson
2015-10-14readme markdownedJP Aumasson
2015-10-14test vectorsJP Aumasson
2015-10-14fix issues reported by Yutaka SawadaSamuel Neves
2015-06-11Remove unnecessary alignment directivesSamuel Neves
2015-05-29fix flags on architectures with < 32-bit intSamuel Neves
2015-05-29copyrightJP
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
2014-08-06Fix makefileSamuel Neves
2014-01-14Use unaligned instructions for non speed-critical memory accessesSamuel Neves
2014-01-14Fix BLAKE2sp and BLAKEbp's inner_length bug.Samuel Neves
2013-03-17I can't read.neheb
2013-03-12Fix compilation if ref used in benchMangix
2013-03-12Fix makefilesMangix
2013-02-01Release 2013-01-31CodesInChaos