WASM Performance (this demo):
Native CLI (3-10x faster):
# Install with native CPU optimizations RUSTFLAGS="-C target-cpu=native" cargo install ligerito # Generate polynomial and prove ligerito generate --size 20 > poly.bin ligerito prove --size 20 --transcript sha256 < poly.bin > proof.bin # Verify (works with proofs from this demo!) ligerito verify --size 20 --transcript sha256 < proof.bin
Transcript Compatibility:
sha256 - Default, works everywhere, CLI compatiblemerlin - Zcash/Dalek standard, stronger domain separationblake2b - Optimized for Substrate runtimes--transcript TYPE in CLI to match this demo