summaryrefslogtreecommitdiffstats
path: root/crypto/blake2/blake2b.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* Move e_os.h to be the very first include.Pauli2017-08-291-2/+1
| | | | | | | | cryptilib.h is the second. Reviewed-by: Andy Polyakov <appro@openssl.org> Reviewed-by: Richard Levitte <levitte@openssl.org> (Merged from https://github.com/openssl/openssl/pull/4188)
* Copyright consolidation 09/10Rich Salz2016-05-171-5/+4
| | | | Reviewed-by: Richard Levitte <levitte@openssl.org>
* fix tab-space mixed indentationFdaSilvaYY2016-05-091-2/+2
| | | | | | | No code change Reviewed-by: Kurt Roeckx <kurt@openssl.org> Reviewed-by: Matt Caswell <matt@openssl.org>
* Copyright consolidation: perl filesRich Salz2016-04-201-1/+1
| | | | | | | | | Add copyright to most .pl files This does NOT cover any .pl file that has other copyright in it. Most of those are Andy's but some are public domain. Fix typo's in some existing files. Reviewed-by: Richard Levitte <levitte@openssl.org>
* Clean-up *_DEBUG options.Andy Polyakov2016-04-071-5/+0
| | | | | | | | | Since NDEBUG is defined unconditionally on command line for release builds, we can omit *_DEBUG options in favour of effective "all-on" in debug builds exercised though CI. Reviewed-by: Richard Levitte <levitte@openssl.org> Reviewed-by: Emilia Käsper <emilia@openssl.org>
* Configure: add BLAKE_DEBUG to --strict-warnings set.Andy Polyakov2016-04-061-1/+1
| | | | Reviewed-by: Rich Salz <rsalz@openssl.org>
* crypto/blake2: make lowest-level function handle multiple blocks..Andy Polyakov2016-03-311-72/+125
| | | | | | | | | | | This minimizes inter-block overhead. Performance gain naturally varies from case to case, up to 10% was spotted so far. There is one thing to recognize, given same circumstances gain would be higher faster computational part is. Or in other words biggest improvement coefficient would have been observed with assembly. Reviewed-by: Emilia Käsper <emilia@openssl.org> Reviewed-by: Rich Salz <rsalz@openssl.org>
* Move blake2_loclh to blake2 directoryRich Salz2016-03-201-1/+1
| | | | Reviewed-by: Viktor Dukhovni <viktor@openssl.org>
* Save leaf_node and node_offset as character arrayKurt Roeckx2016-03-111-2/+2
| | | | | | | They are not numbers in the machine byte order. Reviewed-by: Andy Polyakov <appro@openssl.org> Reviewed-by: Rich Salz <rsalz@openssl.org>
* Review commentsKurt Roeckx2016-03-111-26/+24
| | | | | Reviewed-by: Andy Polyakov <appro@openssl.org> Reviewed-by: Rich Salz <rsalz@openssl.org>
* Add blake2 support.Bill Cox2016-03-111-0/+225
Reviewed-by: Andy Polyakov <appro@openssl.org> Reviewed-by: Rich Salz <rsalz@openssl.org>