Age | Commit message (Expand) | Author | Files | Lines |
2024-05-17 | sha3.c: permute_n_scalar(): simplify num_rounds logic | Paul Duncan | 1 | -2/+2 |
2024-05-09 | sha3.c: document how to add a new backend | Paul Duncan | 1 | -3/+30 |
2024-05-09 | sha3.[hc]: add sha3_xof12_t, refactor xor12 and turboshake functions to use it | Paul Duncan | 1 | -11/+11 |
2024-05-09 | sha3.c: add internal documentation, s/absorb12/absorb_12/ | Paul Duncan | 1 | -39/+227 |
2024-05-08 | sha3.c: update internal documentation | Paul Duncan | 1 | -16/+50 |
2024-05-08 | sha3.c, Makefile: s/SHA3_TEST/TEST_SHA3/ | Paul Duncan | 1 | -4/+4 |
2024-05-08 | s/permute/permute_24/, s/permute12/permute_12/, misc comment cleanup | Paul Duncan | 1 | -99/+89 |
2024-05-08 | sha3.c: rename hybrid-neon to hybrid, fix comments | Paul Duncan | 1 | -30/+26 |
2024-05-08 | sha3.c: hybrid: do not mix neon and non-neon instructions (still slow) | Paul Duncan | 1 | -15/+26 |
2024-05-08 | s/SHA3_BACKEND/BACKEND/g | Paul Duncan | 1 | -48/+48 |
2024-05-08 | sha3.c: s/call permute_n_.*(/call permute_n(/ in test comments | Paul Duncan | 1 | -4/+4 |
2024-05-08 | sha3.c: add hybrid-neon backend (slow) | Paul Duncan | 1 | -1/+202 |
2024-05-08 | sha3.c: diet-neon: misc fixes. still too slow | Paul Duncan | 1 | -46/+36 |
2024-05-08 | sha3.c: neon, diet-neon: use replace vorrq(vshlq, vshrq) and vorr(vshl,vshr) ... | Paul Duncan | 1 | -3/+4 |
2024-05-08 | sha3.c: move INTERNAL before includes | Paul Duncan | 1 | -2/+2 |
2024-05-08 | sha3.c: prefer scalar backend to neon for nowv0.7 | Paul Duncan | 1 | -2/+2 |
2024-05-08 | sha3.c: neon: refactor, add documentation | Paul Duncan | 1 | -115/+157 |
2024-05-07 | sha3.c: s/union/struct/ (yeesh) | Paul Duncan | 1 | -7/+2 |
2024-05-06 | sha3.c: neon backend now twice the speed of scalar backend (~50% fewer cyles,... | Paul Duncan | 1 | -153/+137 |
2024-05-05 | sha3.c: diet-neon: s/permute_n_neon/permute_n_diet_neon/ | Paul Duncan | 1 | -2/+2 |
2024-05-05 | sha3.c: add diet-neon backend (even slower, see commit message) | Paul Duncan | 1 | -0/+329 |
2024-05-05 | sha3.c, Makefile, tests/bench/Makefile: allow overriding SHA3_BACKEND via com... | Paul Duncan | 1 | -6/+14 |
2024-05-05 | sha3.c: s/avx512/neon/ in neon test comments | Paul Duncan | 1 | -2/+2 |
2024-05-04 | sha3.c: neon: add tests, improve performance (still too slow, see full commit... | Paul Duncan | 1 | -198/+217 |
2024-05-03 | sha3.c: add missing RHO_IDS | Paul Duncan | 1 | -0/+9 |
2024-05-03 | sha3.c: add neon backend | Paul Duncan | 1 | -9/+305 |
2024-05-03 | sha3.c: refactor backends so they only implement permute_n() | Paul Duncan | 1 | -40/+21 |
2024-05-01 | sha3.c: improve internal documentation, s/SHA3_BACKEND_/BACKEND_/ | Paul Duncan | 1 | -78/+134 |
2024-04-29 | sha3.c: add permute_n_{scalar,avx512}() and refactor permute{,12}_{scalar,avx... | Paul Duncan | 1 | -198/+23 |
2024-04-29 | sha3.c: s/ifdef/if/ in a few places | Paul Duncan | 1 | -2/+2 |
2024-04-29 | sha3.[hc]: add sha3_backend() | Paul Duncan | 1 | -1/+9 |
2024-04-29 | sha3.c: add/use SHA3_BACKEND | Paul Duncan | 1 | -11/+26 |
2024-04-29 | sha3.c: permute{,12}_avx512(): optimize, update header comment | Paul Duncan | 1 | -367/+295 |
2024-04-29 | sha3.c: build permute12_scalar() during testing, remove old comment | Paul Duncan | 1 | -7/+1 |
2024-04-29 | sha3.c: clean up whitespace in rho(), pi(), and chi() | Paul Duncan | 1 | -38/+50 |
2024-04-29 | sha3.c: use shared RCS, rename scalar and avx512 permute() to permute_{scalar... | Paul Duncan | 1 | -78/+547 |
2024-03-02 | sha3.c: add fail_test(), use it in all tests | Paul Duncan | 1 | -211/+67 |
2024-03-02 | sha3.c: rename HASH_RATE() to RATE(), document RATE() and use it everywhere, ... | Paul Duncan | 1 | -34/+71 |
2024-03-02 | sha3.c: fix comment | Paul Duncan | 1 | -1/+1 |
2024-03-02 | sha3.c: parameterize turboshake | Paul Duncan | 1 | -50/+34 |
2024-03-02 | sha3.c: parameterize parallelhash | Paul Duncan | 1 | -271/+143 |
2024-03-02 | sha3.c: use __func__ in tests | Paul Duncan | 1 | -49/+49 |
2024-03-02 | sha3.c: parameterize tuplehash | Paul Duncan | 1 | -121/+68 |
2024-03-02 | sha3.c: parameterize kmac functions | Paul Duncan | 1 | -235/+122 |
2024-03-02 | sha3.c: move kmac128(), add missing kmac comments | Paul Duncan | 1 | -53/+63 |
2024-03-02 | sha3.c: parameterize cshake | Paul Duncan | 1 | -158/+86 |
2024-03-02 | sha3.c: parameterize rate handling, simplify hash, shake, hmac, and cshake de... | Paul Duncan | 1 | -72/+58 |
2024-03-02 | sha3.c: remove keccak(), refactor xof_absorb_raw() into absorb(), update hash... | Paul Duncan | 1 | -92/+54 |
2024-03-02 | sha3.[hc]: update comments | Paul Duncan | 1 | -2/+4 |
2024-03-02 | sha3.c: move hmac below shake | Paul Duncan | 1 | -71/+71 |