diff options
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, |
