Expand description
§pqrascv-cli
Command-line interface for the PQ-RASCV hardware attestation protocol.
§Installation
cargo install pqrascv-cli§Usage
# Generate a post-quantum keypair
pqrascv keygen --out-seed seed.bin --out-vk vk.bin
# Generate an attestation quote (prover side)
pqrascv attest \
--seed seed.bin --vk vk.bin \
--firmware firmware.bin \
--slsa-level 2 \
--out quote.cbor \
--software-rot-acknowledged
# Verify the quote (verifier side)
pqrascv verify \
--vk vk.bin \
--quote quote.cbor \
--nonce <64-HEX-NONCE> \
--jsonThis crate is a binary. For the library API see
pqrascv-core and
pqrascv-verifier.