Available on crate feature
parallel only.Expand description
Parallel verification utilities.
This module provides high-throughput parallel implementations for stamp verification using rayon parallel iterators.
Verification is embarrassingly parallel - each stamp can be verified independently. We use rayon’s parallel iterators to distribute verification across all available cores.
§Performance Optimization
For batches where you’ve already recovered the owner’s public key, use
verify_stamps_parallel_with_pubkey for approximately 2x faster verification
compared to full ECDSA recovery.
Structs§
- Verify
Result - Result of a stamp verification.
Functions§
- verify_
stamps_ parallel - Verifies multiple stamps in parallel.
- verify_
stamps_ parallel_ with_ owner - Verifies multiple stamps in parallel against an expected owner.
- verify_
stamps_ parallel_ with_ pubkey - Verifies multiple stamps in parallel using a cached public key.