aboutsummaryrefslogtreecommitdiff
path: root/sha3.c
AgeCommit message (Expand)AuthorFilesLines
2024-05-27sha3.c: disable avx2 auto-detect (for now)Paul Duncan1-1/+1
2024-05-27sha3.c: permute_n_avx2(): theta: remove unnecessary assignmentPaul Duncan1-2/+1
2024-05-27sha3.c: permute_n_avx2(): replace some permutes with blends, minor cleanupsPaul Duncan1-19/+19
2024-05-27sha3.c: remove extraneous tabsPaul Duncan1-88/+88
2024-05-27sha3.c: permute_n_avx2(): remove LOAD/STORE macros, minor comment fixesPaul Duncan1-36/+23
2024-05-27sha3.c: permute_n_avx2(): CHI(): remove tabsPaul Duncan1-5/+5
2024-05-27sha3.c: permute_n_avx2(): replace two instances of permute4x64_epi64() with s...Paul Duncan1-4/+2
2024-05-27sha3.c: permute_n_avx2(): rho: use ROLI instead of ROLV for hiPaul Duncan1-11/+10
2024-05-27sha3.c: permute_n_avx2(): remove K64Paul Duncan1-1/+1
2024-05-27sha3.c: permute_n_avx2(): clean up commentsPaul Duncan1-17/+12
2024-05-27sha3.c: permute_n_avx2(): add CHI()Paul Duncan1-59/+25
2024-05-26sha3.c: avx2: s/loadu_epi64/loadu_si256Paul Duncan1-10/+10
2024-05-26sha3.c: permute_n_avx2(): chi: explicit andnotPaul Duncan1-5/+5
2024-05-26sha3.c: permute_n_avx2(): chi: use blend instead of permute where possible, r...Paul Duncan1-16/+19
2024-05-26sha3.c: permute_n_avx2(): refactor lane masksPaul Duncan1-44/+34
2024-05-26sha3.c: permute_n_avx2(): pi: remove gather (better, but still slower than sc...Paul Duncan1-29/+46
2024-05-26sha3.c: permute_n_avx2(): rename theta permute idsPaul Duncan1-3/+9
2024-05-26sha3.c: add initial avx2 backend (slow)Paul Duncan1-0/+249
2024-05-17sha3.c: permute_n_avx512(): simplify num_rounds logicPaul Duncan1-5/+2
2024-05-17sha3.c: permute_n_scalar(): simplify num_rounds logicPaul Duncan1-2/+2
2024-05-09sha3.c: document how to add a new backendPaul Duncan1-3/+30
2024-05-09sha3.[hc]: add sha3_xof12_t, refactor xor12 and turboshake functions to use itPaul Duncan1-11/+11
2024-05-09sha3.c: add internal documentation, s/absorb12/absorb_12/Paul Duncan1-39/+227
2024-05-08sha3.c: update internal documentationPaul Duncan1-16/+50
2024-05-08sha3.c, Makefile: s/SHA3_TEST/TEST_SHA3/Paul Duncan1-4/+4
2024-05-08s/permute/permute_24/, s/permute12/permute_12/, misc comment cleanupPaul Duncan1-99/+89
2024-05-08sha3.c: rename hybrid-neon to hybrid, fix commentsPaul Duncan1-30/+26
2024-05-08sha3.c: hybrid: do not mix neon and non-neon instructions (still slow)Paul Duncan1-15/+26
2024-05-08s/SHA3_BACKEND/BACKEND/gPaul Duncan1-48/+48
2024-05-08sha3.c: s/call permute_n_.*(/call permute_n(/ in test commentsPaul Duncan1-4/+4
2024-05-08sha3.c: add hybrid-neon backend (slow)Paul Duncan1-1/+202
2024-05-08sha3.c: diet-neon: misc fixes. still too slowPaul Duncan1-46/+36
2024-05-08sha3.c: neon, diet-neon: use replace vorrq(vshlq, vshrq) and vorr(vshl,vshr) ...Paul Duncan1-3/+4
2024-05-08sha3.c: move INTERNAL before includesPaul Duncan1-2/+2
2024-05-08sha3.c: prefer scalar backend to neon for nowv0.7Paul Duncan1-2/+2
2024-05-08sha3.c: neon: refactor, add documentationPaul Duncan1-115/+157
2024-05-07sha3.c: s/union/struct/ (yeesh)Paul Duncan1-7/+2
2024-05-06sha3.c: neon backend now twice the speed of scalar backend (~50% fewer cyles,...Paul Duncan1-153/+137
2024-05-05sha3.c: diet-neon: s/permute_n_neon/permute_n_diet_neon/Paul Duncan1-2/+2
2024-05-05sha3.c: add diet-neon backend (even slower, see commit message)Paul Duncan1-0/+329
2024-05-05sha3.c, Makefile, tests/bench/Makefile: allow overriding SHA3_BACKEND via com...Paul Duncan1-6/+14
2024-05-05sha3.c: s/avx512/neon/ in neon test commentsPaul Duncan1-2/+2
2024-05-04sha3.c: neon: add tests, improve performance (still too slow, see full commit...Paul Duncan1-198/+217
2024-05-03sha3.c: add missing RHO_IDSPaul Duncan1-0/+9
2024-05-03sha3.c: add neon backendPaul Duncan1-9/+305
2024-05-03sha3.c: refactor backends so they only implement permute_n()Paul Duncan1-40/+21
2024-05-01sha3.c: improve internal documentation, s/SHA3_BACKEND_/BACKEND_/Paul Duncan1-78/+134
2024-04-29sha3.c: add permute_n_{scalar,avx512}() and refactor permute{,12}_{scalar,avx...Paul Duncan1-198/+23
2024-04-29sha3.c: s/ifdef/if/ in a few placesPaul Duncan1-2/+2
2024-04-29sha3.[hc]: add sha3_backend()Paul Duncan1-1/+9