docs: added RPX benchmarks

This commit is contained in:
Al-Kindi-0
2023-10-26 16:10:17 +02:00
committed by Bobbin Threadbare
parent 3125144445
commit a2a26e2aba
6 changed files with 185 additions and 33 deletions

View File

@@ -43,6 +43,9 @@ const CAPACITY_RANGE: Range<usize> = 0..4;
const DIGEST_RANGE: Range<usize> = 4..8;
const DIGEST_SIZE: usize = DIGEST_RANGE.end - DIGEST_RANGE.start;
/// The number of bytes needed to encoded a digest
const DIGEST_BYTES: usize = 32;
/// The number of byte chunks defining a field element when hashing a sequence of bytes
const BINARY_CHUNK_SIZE: usize = 7;