diff options
| author | Jack O'Connor <[email protected]> | 2024-08-18 15:36:11 -0700 |
|---|---|---|
| committer | Jack O'Connor <[email protected]> | 2024-08-18 17:43:58 -0700 |
| commit | dcff6b65acdd978863512c2d9c1359aef2564ea4 (patch) | |
| tree | 22126611ede951804d2818e7fbef2e9fad83348c /c/blake3_impl.h | |
| parent | 5c4c351a1a0729f8e7a88e6895379bb952ed1a07 (diff) | |
delete portable::xof_many and blake3_xof_many_portable
Diffstat (limited to 'c/blake3_impl.h')
| -rw-r--r-- | c/blake3_impl.h | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/c/blake3_impl.h b/c/blake3_impl.h index 3da773b..3bb9169 100644 --- a/c/blake3_impl.h +++ b/c/blake3_impl.h @@ -222,14 +222,6 @@ void blake3_compress_xof_portable(const uint32_t cv[8], uint8_t block_len, uint64_t counter, uint8_t flags, uint8_t out[64]); -// This function is test-only. When blake3_xof_many doesn't have an optimized implementation, -// it loops over blake3_compress_xof instead of falling back to this, so it still benefits -// from compress optimizations. -void blake3_xof_many_portable(const uint32_t cv[8], - const uint8_t block[BLAKE3_BLOCK_LEN], - uint8_t block_len, uint64_t counter, uint8_t flags, - uint8_t out[64], size_t outblocks); - void blake3_hash_many_portable(const uint8_t *const *inputs, size_t num_inputs, size_t blocks, const uint32_t key[8], uint64_t counter, bool increment_counter, |
