qssm-ms 1.0.0

QSSM-MS (Mirror-Shift) succinct predicate proofs.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use qssm_utils::MerkleError;
use thiserror::Error;

#[derive(Debug, Error)]
#[non_exhaustive]
pub enum MsError {
    #[error("no valid rotation found within nonce range (0..=255)")]
    NoValidRotation,
    #[error("invalid proof field: {0}")]
    InvalidProofField(&'static str),
    #[error(transparent)]
    Merkle(#[from] MerkleError),
}