Winternitz signature verification using binary search. ## Verification Algorithm Simulates a for loop of hashing using binary search on the digit. ## Signature Format - `hash(digits[0])` - `digits[0]` - `hash(digits[1])` - `digits[1]` - ... - `hash(digits[n + m - 1])` - `digits[n + m - 1]` There are `n` message digits followed by `m` checksum digits. ## Approximate Max Stack Depth Used Durin
| 526 | /// |
| 527 | /// 2 * `total_length()` |
| 528 | pub struct BinarysearchVerifier {} |
| 529 | |
| 530 | impl Verifier for BinarysearchVerifier { |
| 531 | fn verify_digits(ps: &Parameters, public_key: &PublicKey) -> Script { |
nothing calls this directly
no outgoing calls
no test coverage detected