1
0
Fork 0
mirror of https://github.com/BLAKE3-team/BLAKE3 synced 2024-05-04 15:06:13 +02:00

update the blake3_c_rust_bindings test cases also

This commit is contained in:
Jack O'Connor 2020-09-29 10:59:56 -04:00
parent ae3e8e6b3a
commit 5bdfd07666

View File

@ -19,6 +19,19 @@ const KEYED_HASH: u8 = 1 << 4;
pub const TEST_CASES: &[usize] = &[
0,
1,
2,
3,
4,
5,
6,
7,
8,
BLOCK_LEN - 1,
BLOCK_LEN,
BLOCK_LEN + 1,
2 * BLOCK_LEN - 1,
2 * BLOCK_LEN,
2 * BLOCK_LEN + 1,
CHUNK_LEN - 1,
CHUNK_LEN,
CHUNK_LEN + 1,