diff options
| author | Jack O'Connor <[email protected]> | 2020-01-03 12:51:04 -0500 |
|---|---|---|
| committer | Jack O'Connor <[email protected]> | 2020-01-04 22:14:21 -0500 |
| commit | a8bff48111eea3212781638e3959a0a7227ddc13 (patch) | |
| tree | b6518057c81242f7cac5ea2f615f9704e1f9db1b /src/c/blake3_neon.c | |
| parent | 72ba63ca86b3aa1d7052331641767614717c9ac7 (diff) | |
WIP switch to new permutationpermutation
Diffstat (limited to 'src/c/blake3_neon.c')
| -rw-r--r-- | src/c/blake3_neon.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/c/blake3_neon.c b/src/c/blake3_neon.c index 7335c19..46691f5 100644 --- a/src/c/blake3_neon.c +++ b/src/c/blake3_neon.c @@ -290,6 +290,11 @@ void blake3_hash4_neon(const uint8_t *const *inputs, size_t blocks, * ---------------------------------------------------------------------------- */ +void blake3_compress_in_place_portable(uint32_t cv[8], + const uint8_t block[BLAKE3_BLOCK_LEN], + uint8_t block_len, uint64_t counter, + uint8_t flags); + INLINE void hash_one_neon(const uint8_t *input, size_t blocks, const uint32_t key[8], uint64_t counter, uint8_t flags, uint8_t flags_start, uint8_t flags_end, |
