aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src/tools (unfollow)
Commit message (Collapse)AuthorFilesLines
2018-09-18poly1305: better module descriptionJason A. Donenfeld1-1/+1
2018-09-18version: bump snapshot0.0.20180918Jason A. Donenfeld2-2/+2
2018-09-18chacha20: add independent self testJason A. Donenfeld2-0/+1188
This was already tested from the chacha20poly1305 test, but it's useful to be able to test this in isolation too.
2018-09-18chacha20poly1305: add __init to selftest helper functionsJason A. Donenfeld1-3/+3
2018-09-18curve25519-arm: only compile if symbols will be usedJason A. Donenfeld1-1/+1
2018-09-18chacha20-x86_64: use correct cut off for avx512-vlJason A. Donenfeld1-1/+1
2018-09-18poly1305-x86_64: show full struct for stateJason A. Donenfeld1-5/+7
2018-09-18crypto: allow for disabling simd in zinc modulesJason A. Donenfeld6-9/+33
2018-09-18chacha20-x86_64: more limited cascadeJason A. Donenfeld1-5/+4
2018-09-18chacha20poly1305: relax simd between sg chunksJason A. Donenfeld1-0/+2
2018-09-18crypto: turn Zinc into individual modulesJason A. Donenfeld25-54/+172
2018-09-17crypto: do not use -include trickJason A. Donenfeld14-51/+34
2018-09-17poly1305-x86_64: don't activate simd for small blocksJason A. Donenfeld1-3/+14
2018-09-17chacha20-x86_64: don't activate simd for small blocksJason A. Donenfeld1-1/+2
2018-09-17crypto: pass simd by referenceJason A. Donenfeld17-109/+129
2018-09-17chacha20-x86_64: cascade down implementationsJason A. Donenfeld1-3/+3
2018-09-17poly1305: do not require simd context for archJason A. Donenfeld8-22/+14
2018-09-16crypto: make MITJason A. Donenfeld39-39/+39
2018-09-16qemu: always pull and reset against integration treeJason A. Donenfeld1-0/+5
2018-09-16global: remove non-essential inline annotationsJason A. Donenfeld5-30/+23
2018-09-16send/receive: reduce number of sg entriesJason A. Donenfeld2-2/+2
This reduces stack usage to quell warnings on powerpc.
2018-09-15simd: add __must_check annotationJason A. Donenfeld1-2/+2
Suggested-by: Andy Lutomirski <luto@amacapital.net>
2018-09-13chacha20-arm: swap scalar and neon functionsJason A. Donenfeld1-697/+697
This brings us closer to the original code.
2018-09-12poly1305: precompute 5*r in init instead of blocksJason A. Donenfeld2-6/+18
2018-09-12curve25519-x86_64: remove useless defineJason A. Donenfeld1-1/+0
2018-09-12chacha20: add constant for words in blockJason A. Donenfeld2-2/+3
2018-09-11poly1305: rename finish to finalJason A. Donenfeld5-13/+13
2018-09-11kconfig: make NEON depend on CPU_V7Jason A. Donenfeld1-3/+3
2018-09-11crypto: make sure UML is properly disabledJason A. Donenfeld1-4/+4
2018-09-11crypto: do not use compound literals in selftestsJason A. Donenfeld2-7704/+7710
gcc can't apply section attributes to compound literals, so we can't mark the actual data as __initconst. We thus waste space instead, but this shouldn't matter much, since it's cleared after init anyway, and because this is only for debugging.
2018-09-10blake2s-x86_64: fix whitespace errorsJason A. Donenfeld1-2/+2
2018-09-10version: bump snapshot0.0.20180910Jason A. Donenfeld2-2/+2
2018-09-10poly1305: switch to donnaJason A. Donenfeld3-183/+398
2018-09-08poly1305: rewrite self tests from scratchJason A. Donenfeld1-1529/+831
This removes the old cruft and makes things a bit more idiomatic.
2018-09-06compat: move simd.h from crypto to compat since it's going upstreamJason A. Donenfeld2-0/+4
2018-09-06compat: arch-namespace certain includesJason A. Donenfeld5-8/+8
2018-09-06compat: support neon.h on old kernelsJason A. Donenfeld2-0/+14
Reported-by: Philipp Richter <richterphilipp.pops@gmail.com>
2018-09-06crypto: use CRYPTOGAMS licenseJason A. Donenfeld9-23/+27
2018-09-06curve25519: arm: do not modify sp directlyJason A. Donenfeld1-3/+3
Thumb doesn't like this. Reported-by: Roman Mamedov <rm@romanrm.net>
2018-09-04version: bump snapshot0.0.20180904Jason A. Donenfeld2-2/+2
2018-09-04global: always find OOM unlikelyJason A. Donenfeld6-17/+17
Suggested-by: Sultan Alsawaf <sultanxda@gmail.com>
2018-09-04global: prefer sizeof(*pointer) when possibleJason A. Donenfeld15-53/+44
Suggested-by: Sultan Alsawaf <sultanxda@gmail.com>
2018-09-03global: satisfy check_patch.pl errorsJason A. Donenfeld6-26/+27
2018-09-03crypto: import zincJason A. Donenfeld56-6553/+13141
2018-09-02uapi: reformatJason A. Donenfeld1-81/+83
2018-09-02tools: ipc: do not warn on unrecognized netlink attributesJason A. Donenfeld1-17/+0
It makes extending things more difficult.
2018-09-02netlink: insert peer version placeholderJason A. Donenfeld3-3/+17
While we don't want people to ever use old protocols, people will complain if the API "changes", so explicitly make the unset protocol mean the latest, and add a dummy mechanism of specifying the protocol on a per-peer basis, which we hope nobody actually ever uses.
2018-08-28curve25519-arm: prefix immediates with #Jason A. Donenfeld1-18/+18
2018-08-28curve25519-arm: do not waste 32 bytes of stackJason A. Donenfeld1-88/+88
2018-08-28curve25519-arm: use ordinary prolog and epilogueSamuel Neves1-18/+6
Signed-off-by: Samuel Neves <sneves@dei.uc.pt>