pub const MAX_WINTERNITZ_DIGITS_PER_KEY: usize = 68;
Expand description
The maximum number of Winternitz digits per key. This is used to limit the size of the Winternitz public keys in the protocol to prevent excessive memory usage and ensure efficient processing. This value is achieved when signing a 32-byte message with a Winternitz key, resulting in a maximum of 64 + 4 digits per key, where the last 4 digits are used for the sum-check operation.