pqrascv-hardware 1.0.0-rc.5

Hardware-rooted trust and distributed verifier consensus for PQ-RASCV
Documentation
1
2
3
4
5
6
/// Centralized canonicalization trait for deterministic hashing.
pub trait Canonicalizable {
    /// Produces a deterministic 32-byte hash representing the canonical state.
    #[allow(clippy::result_unit_err)]
    fn canonical_hash(&self) -> Result<[u8; 32], ()>;
}